diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-03-13 17:10:14 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-03-13 17:10:14 +0000 |
commit | 477140ee87d4de70d22c41fe9cdb326baa1d9749 (patch) | |
tree | d0a6399103b549f42d8f124804dfabb31e5bd154 /Configure | |
parent | 7056f94a252273b10cc029678e8fd38f9090525a (diff) | |
download | perl-477140ee87d4de70d22c41fe9cdb326baa1d9749.tar.gz |
The existing order of the checks for whether man1dir and man3dir were
' ' were obviously buggy, because they set installman[13]dir only for
the next if block to set it again. Reordering removes that daftness.
p4raw-id: //depot/perl@27485
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 18 |
1 files changed, 8 insertions, 10 deletions
@@ -8017,17 +8017,16 @@ if $test "X$man1direxp" != "X$ansexp"; then fi man1dir="$ans" man1direxp="$ansexp" -case "$man1dir" in -'') man1dir=' ' - installman1dir='';; -esac - : Change installation prefix, if necessary. if $test X"$prefix" != X"$installprefix"; then installman1dir=`echo $man1direxp | $sed "s#^$prefixexp#$installprefixexp#"` else installman1dir="$man1direxp" fi +case "$man1dir" in +'') man1dir=' ' + installman1dir='';; +esac : What suffix to use on installed man pages @@ -8142,17 +8141,16 @@ rp="Where do the $package library man pages (source) go?" . ./getfile man3dir="$ans" man3direxp="$ansexp" -case "$man3dir" in -'') man3dir=' ' - installman3dir='';; -esac - : Change installation prefix, if necessary. if $test X"$prefix" != X"$installprefix"; then installman3dir=`echo $man3direxp | $sed "s#^$prefixexp#$installprefixexp#"` else installman3dir="$man3direxp" fi +case "$man3dir" in +'') man3dir=' ' + installman3dir='';; +esac : What suffix to use on installed man pages case "$man3dir" in |