diff options
author | zach%zachlipton.com <> | 2001-09-04 00:58:53 +0000 |
---|---|---|
committer | zach%zachlipton.com <> | 2001-09-04 00:58:53 +0000 |
commit | 58495aaee931590af5a96c0284cbd3167dc2a3f0 (patch) | |
tree | b95a06d2219d2ffce2701a32a5033ee1f358185d | |
parent | b4fa09d3e743c3adaae0717e0e5366481a0fc755 (diff) | |
download | bugs-58495aaee931590af5a96c0284cbd3167dc2a3f0.tar bugs-58495aaee931590af5a96c0284cbd3167dc2a3f0.tar.gz bugs-58495aaee931590af5a96c0284cbd3167dc2a3f0.tar.bz2 bugs-58495aaee931590af5a96c0284cbd3167dc2a3f0.tar.xz bugs-58495aaee931590af5a96c0284cbd3167dc2a3f0.zip |
Fix for bug 98024: t/1.t should use $^X instead of hard-coded path to perl.
Patch by ddkilzer@theracingworld.com (David D. Kilzer, ddk). Review by Zach Lipton (zach@zachlipton.com) no 2nd review required.
-rw-r--r-- | t/1.t | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ xml.cgi #51 )); our $warnings; my $verbose = $::ENV{VERBOSE}; -$perlapp='/usr/bonsaitools/bin/perl'; +$perlapp=$^X; foreach $file (@testitems) { $file =~ s/\s.*$//; # nuke everything after the first space (#comment) next if (!$file); # skip null entries |