Change 19914 by [EMAIL PROTECTED] on 2003/07/01 13:08:44
A naked values() caused a different lib/Config.pm every time.
Affected files ...
... //depot/perl/configpm#45 edit
Differences ...
==== //depot/perl/configpm#45 (xtext) ====
Index: perl/configpm
--- perl/configpm#44~18780~ Tue Feb 25 16:25:32 2003
+++ perl/configpm Tue Jul 1 06:08:44 2003
@@ -406,7 +406,7 @@
}
my $fast_config = join '', map { " $_,\n" }
- values (%v_fast), 'byteorder => $value' ;
+ sort values (%v_fast), 'byteorder => $value' ;
print CONFIG sprintf <<'ENDOFTIE', $byteorder_code, $fast_config;
End of Patch.