summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/buildsystem.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py
index f6bcb15b..3e50b50b 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -158,7 +158,13 @@ class CPANBuildSystem(BuildSystem):
def __init__(self):
self.configure_commands = [
- '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"',
+ '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',