summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-09-25 10:36:57 +0100
committerNicholas Clark <nick@ccl4.org>2009-09-25 10:36:57 +0100
commita32b3e139d3c4089c63b2af5abf995d1c2dec954 (patch)
tree876075ed2a47cffdd522f8c35e5f9ef85f78d6ca /Configure
parent2696da521a49bbf51b058017a212ae31adb7a982 (diff)
downloadperl-a32b3e139d3c4089c63b2af5abf995d1c2dec954.tar.gz
Explicitly sort the extensions, now that they come from multiple directories.
We used to have extensions automatically sorted because they came from a single glob, that was itself sorted.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configure b/Configure
index c97a42ed76..b2b92af66f 100755
--- a/Configure
+++ b/Configure
@@ -21707,10 +21707,10 @@ else
fi
set X $known_extensions
shift
-known_extensions="$*"
+known_extensions=`echo "$*" | tr ' ' $trnl | $sort | tr $trnl ' '`
set X $nonxs_extensions
shift
-nonxs_extensions="$*"
+nonxs_extensions=`echo "$*" | tr ' ' $trnl | $sort | tr $trnl ' '`
cd "$tdir"
: Now see which are supported on this system.