In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/a32b3e139d3c4089c63b2af5abf995d1c2dec954?hp=2696da521a49bbf51b058017a212ae31adb7a982>

- Log -----------------------------------------------------------------
commit a32b3e139d3c4089c63b2af5abf995d1c2dec954
Author: Nicholas Clark <[email protected]>
Date:   Fri Sep 25 10:36:57 2009 +0100

    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.
-----------------------------------------------------------------------

Summary of changes:
 Configure |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Configure b/Configure
index c97a42e..b2b92af 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.

--
Perl5 Master Repository

Reply via email to