diff options
author | Andy Dougherty <doughera@lafayette.edu> | 2003-06-11 09:35:26 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-11 18:28:12 +0000 |
commit | c3dadc13ecc6ab6af328ca3d3e57d4da7767d678 (patch) | |
tree | 6d778f9eec3fb50ebf969271f0dcc8b9e1423c50 /Configure | |
parent | ef275d6f08d4a9026701c644c1a428d91f4e0ba3 (diff) | |
download | perl-c3dadc13ecc6ab6af328ca3d3e57d4da7767d678.tar.gz |
Configure -Dnoextensions would not accept a list
Message-ID: <Pine.SOL.4.53.0306111331550.2477@maxwell.phys.lafayette.edu>
p4raw-id: //depot/perl@19742
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Sun Jun 8 21:12:45 EET DST 2003 [metaconfig 3.0 PL70] +# Generated on Wed Jun 11 22:38:54 EET DST 2003 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -20150,8 +20150,8 @@ case "$noextensions" in *) keepextensions='' echo "You have requested that certain extensions be ignored..." >&4 for i in $avail_ext; do - case " $i " in - " $noextensions ") echo "Ignoring extension $i." ;; + case " $noextensions " in + *" $i "*) echo "Ignoring extension $i." ;; *) echo "Keeping extension $i."; keepextensions="$keepextensions $i" ;; |