Change 27485 by [EMAIL PROTECTED] on 2006/03/13 17:10:14
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.
Affected files ...
... //depot/perl/Configure#608 edit
Differences ...
==== //depot/perl/Configure#608 (xtext) ====
Index: perl/Configure
--- perl/Configure#607~27484~ 2006-03-13 07:50:04.000000000 -0800
+++ perl/Configure 2006-03-13 09:10:14.000000000 -0800
@@ -8017,17 +8017,16 @@
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 @@
. ./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
End of Patch.