1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: make build reproducible by sorting hash keys
Origin: vendor
Bug-Debian: https://bugs.debian.org/778953
Forwarded: not-yet
Author: Chris Lamb <lamby@debian.org>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2015-05-02
--- a/lib/ElixirFM/Data/Compose.PL
+++ b/lib/ElixirFM/Data/Compose.PL
@@ -49,7 +49,7 @@
}
-printf "%s\t=> %s,\n", Data::Dumper->Dump([$_]), Data::Dumper->Dump([$data->{$_}]) foreach keys %{$data};
+printf "%s\t=> %s,\n", Data::Dumper->Dump([$_]), Data::Dumper->Dump([$data->{$_}]) foreach sort keys %{$data};
print << 'PM';
|