This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2696da5
)
Explicitly sort the extensions, now that they come from multiple directories.
author
Nicholas Clark
<nick@ccl4.org>
Fri, 25 Sep 2009 09:36:57 +0000
(10:36 +0100)
committer
Nicholas Clark
<nick@ccl4.org>
Fri, 25 Sep 2009 09:36:57 +0000
(10:36 +0100)
We used to have extensions automatically sorted because they came from a
single glob, that was itself sorted.
Configure
patch
|
blob
|
blame
|
history
diff --git
a/Configure
b/Configure
index
c97a42e
..
b2b92af
100755
(executable)
--- 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.