You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2005/10/19 03:53:07 UTC

svn commit: r326323 - /spamassassin/trunk/build/automc/run_preflight

Author: jm
Date: Tue Oct 18 18:53:06 2005
New Revision: 326323

URL: http://svn.apache.org/viewcvs?rev=326323&view=rev
Log:
use homebuilt perl, not /usr/bin/perl

Modified:
    spamassassin/trunk/build/automc/run_preflight

Modified: spamassassin/trunk/build/automc/run_preflight
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/build/automc/run_preflight?rev=326323&r1=326322&r2=326323&view=diff
==============================================================================
--- spamassassin/trunk/build/automc/run_preflight (original)
+++ spamassassin/trunk/build/automc/run_preflight Tue Oct 18 18:53:06 2005
@@ -3,8 +3,10 @@
 use strict;
 sub run;
 
+my $perl = $0;
+
 # build, as necessary
-run "perl Makefile.PL < /dev/null";
+run "$perl Makefile.PL < /dev/null";
 run "make";
 
 chdir "masses" or die;
@@ -20,8 +22,8 @@
 # this is run in a chroot jail, just in case there's hostile
 # rule code in there...
 
-run "/local/bbmasstools/masschroot ./mass-check ".
-    "--cache --progress -j=1 -f $targets";
+run "/local/bbmasstools/masschroot $perl ".
+    "mass-check --cache --progress -j=1 -f $targets";
 
 exit;