diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-18 17:11:07 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-18 17:11:07 +0000 |
commit | f78bfc9cd1f8635ff74b5498755525103ee2e6b3 (patch) | |
tree | 8f865719aa26ba91c95b051e13b26374815d5785 /Configure | |
parent | 6d4f734c7dcb73e49cff15cfce4389390a27bda5 (diff) | |
download | perl-f78bfc9cd1f8635ff74b5498755525103ee2e6b3.tar.gz |
Configure nits: rewording from Sarathy (aka #5796),
and installation directories patch from Robin Barker.
p4raw-id: //depot/cfgperl@5802
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Thu Mar 16 03:04:33 EET 2000 [metaconfig 3.0 PL70] +# Generated on Sat Mar 18 18:51:21 EET 2000 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.com) cat >/tmp/c1$$ <<EOF @@ -3312,13 +3312,15 @@ while test "$type"; do Directory) for fp in $gfpth; do if test "X$fp" = X.; then - pf="$ansexp" + dir="$ans" + direxp="$ansexp" else - pf="$fp/$ansexp" + dir="$fp/$ans" + direxp="$fp/$ansexp" fi - if test -d "$pf"; then + if test -d "$direxp"; then type='' - value="$pf" + value="$dir" break fi done |