diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2001-12-12 00:32:33 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-11 21:48:26 +0000 |
commit | 5e20a8caf01365118243ba3d44ce3f93ddc42f27 (patch) | |
tree | 95991615984339c0efc83425102c81b9a3c09623 /Configure | |
parent | 9e17a6b85d8f3a1c82a2e59da7f9b7ccbbb4c3d4 (diff) | |
download | perl-5e20a8caf01365118243ba3d44ce3f93ddc42f27.tar.gz |
$Config{perlpath} and -Dversiononly
Message-ID: <20011211233233.A11587@rafael>
p4raw-id: //depot/perl@13632
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Tue Dec 11 08:22:11 EET 2001 [metaconfig 3.0 PL70] +# Generated on Wed Dec 12 00:49:11 EET 2001 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -8037,7 +8037,10 @@ echo "I'll use $startperl to start perl scripts." : figure best path for perl in scripts case "$perlpath" in '') - perlpath="$binexp/perl" + case "$versiononly" in + "$define") perlpath="$binexp/perl$version";; + *) perlpath="$binexp/perl";; + esac case "$startperl" in *!*) ;; *) |