summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2003-06-11 09:35:26 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2003-06-11 18:28:12 +0000
commitc3dadc13ecc6ab6af328ca3d3e57d4da7767d678 (patch)
tree6d778f9eec3fb50ebf969271f0dcc8b9e1423c50 /Configure
parentef275d6f08d4a9026701c644c1a428d91f4e0ba3 (diff)
downloadperl-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-xConfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/Configure b/Configure
index b73082aac4..28b239ecd8 100755
--- a/Configure
+++ b/Configure
@@ -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"
;;