From dc126bf467208df7011e6928387f42ca938654cb Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Wed, 25 Apr 2012 11:44:25 +0000 Subject: CPANBuildSystem: split command into lines --- morphlib/buildsystem.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'morphlib/buildsystem.py') 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', -- cgit v1.2.1