summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-25 11:44:25 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-25 11:44:25 +0000
commitdc126bf467208df7011e6928387f42ca938654cb (patch)
tree219f17af454d74ce056729c87793e79695082c20 /morphlib/buildsystem.py
parente88ab23d02d3eda099f903499bb8dbda633d4d7a (diff)
downloadmorph-dc126bf467208df7011e6928387f42ca938654cb.tar.gz
CPANBuildSystem: split command into lines
Diffstat (limited to 'morphlib/buildsystem.py')
-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',