diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-01 21:55:19 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-01 21:55:19 +0000 |
commit | 257059b58a2d77aba48bf099d2f6f36a7db36640 (patch) | |
tree | 78c2a5a36783029e8a3a5b4249ccfc9fa9dc9e39 /Configure | |
parent | f9674d8395f3ae151e95db6523de9d832afc2b2b (diff) | |
download | perl-257059b58a2d77aba48bf099d2f6f36a7db36640.tar.gz |
Missed this bit in the last update: couldn't answer ''
or ' ' to get 'none'.
p4raw-id: //depot/perl@20435
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Fri Aug 1 14:45:20 EEST 2003 [metaconfig 3.0 PL70] +# Generated on Sat Aug 2 02:07:46 EEST 2003 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -8601,6 +8601,9 @@ case "$siteman1dir" in '') dflt=`echo $man1dir | $sed "s#^$prefix#$siteprefix#"` ;; *) dflt=$siteman1dir ;; esac +case "$dflt" in +''|' ') dflt=none ;; +esac fn=dn+~ rp='Pathname where the site-specific manual pages should be installed?' . ./getfile @@ -8618,6 +8621,9 @@ case "$siteman3dir" in '') dflt=`echo $man3dir | $sed "s#^$prefix#$siteprefix#"` ;; *) dflt=$siteman3dir ;; esac +case "$dflt" in +''|' ') dflt=none ;; +esac fn=dn+~ rp='Pathname where the site-specific library manual pages should be installed?' . ./getfile |