[Bps-public-commit] r10446 - bpsbuilder/Shipwright/lib/Shipwright/Script
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Wed Jan 23 09:25:45 EST 2008
Author: sunnavy
Date: Wed Jan 23 09:25:44 2008
New Revision: 10446
Modified:
bpsbuilder/Shipwright/lib/Shipwright/Script/Import.pm
Log:
no use the perl in config, just use %%PERL%% template
Modified: bpsbuilder/Shipwright/lib/Shipwright/Script/Import.pm
==============================================================================
--- bpsbuilder/Shipwright/lib/Shipwright/Script/Import.pm (original)
+++ bpsbuilder/Shipwright/lib/Shipwright/Script/Import.pm Wed Jan 23 09:25:44 2008
@@ -197,18 +197,14 @@
}
elsif ( -f 'Build.PL' ) {
push @commands,
- 'configure: '
- . $shipwright->build->perl
- . ' Build.PL --install_base=%%INSTALL_BASE%%';
+ 'configure: %%PERL%% Build.PL --install_base=%%INSTALL_BASE%%';
push @commands, "make: ./Build";
push @commands, "test: ./Build test";
push @commands, "install: ./Build install";
}
elsif ( -f 'Makefile.PL' ) {
push @commands,
- 'configure: '
- . $shipwright->build->perl
- . ' Makefile.PL INSTALL_BASE=%%INSTALL_BASE%%';
+ 'configure: %%PERL%% Makefile.PL INSTALL_BASE=%%INSTALL_BASE%%';
push @commands, 'make: make';
push @commands, 'test: make test';
More information about the Bps-public-commit
mailing list