From: Jarkko Hietaniemi Date: Tue, 1 Jul 2003 13:08:44 +0000 (+0000) Subject: A naked values() caused shuffling of lib/Config.pm, X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=15297a7d24155f38a9759bfd3db39e6dd6630142;p=p5sagit%2Fp5-mst-13.2.git A naked values() caused shuffling of lib/Config.pm, which in turn caused unnecessary rebuilds. p4raw-id: //depot/perl@19914 --- diff --git a/configpm b/configpm index b705997..d0947d0 100755 --- a/configpm +++ b/configpm @@ -406,7 +406,7 @@ EOT } 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;