From e88ab23d02d3eda099f903499bb8dbda633d4d7a Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Wed, 25 Apr 2012 11:40:00 +0000 Subject: CPANBuildSystem: install into perl dirs instead This is needed because otherwise it will install the .pod file into where the building perl expects it to be, which we should not assume is the same as what we are building for. --- morphlib/buildsystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'morphlib/buildsystem.py') diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py index b6c7661a..f6bcb15b 100644 --- a/morphlib/buildsystem.py +++ b/morphlib/buildsystem.py @@ -158,7 +158,7 @@ class CPANBuildSystem(BuildSystem): def __init__(self): self.configure_commands = [ - 'perl Makefile.PL INSTALLDIRS=site INSTALLSITEARCH="$PREFIX/lib/perl" INSTALLSITELIB="$PREFIX/lib/perl" INSTALLSITEBIN="$PREFIX/bin" INSTALLSITESCRIPT="$PREFIX/bin" INSTALLSITEMAN1DIR="$PREFIX/share/man/man1" INSTALLMAN3DIR="$PREFIX/share/man/man3"', + 'perl Makefile.PL INSTALLDIRS=perl INSTALLARCHLIB="$PREFIX/lib/perl" INSTALLPRIVLIB="$PREFIX/lib/perl" INSTALLBIN="$PREFIX/bin" INSTALLSCRIPT="$PREFIX/bin" INSTALLMAN1DIR="$PREFIX/share/man/man1" INSTALLMAN3DIR="$PREFIX/share/man/man3"', ] self.build_commands = [ 'make', -- cgit v1.2.1