Skip to content
Snippets Groups Projects
Commit eecd3736 authored by intrigeri's avatar intrigeri
Browse files

reproducible_build.patch: added. Thanks to Reiner Herrmann...

reproducible_build.patch: added. Thanks to Reiner Herrmann <reiner@reiner-h.de> for the patch! (Closes: #808667).
parent 1812b322
No related branches found
No related tags found
No related merge requests found
From: Reiner Herrmann <reiner@reiner-h.de>
Description: Make the build reproducible: without this the file list is embedded in readdir order, which is not deterministic.
--- a/tool/generate-mouse-tiny.pl
+++ b/tool/generate-mouse-tiny.pl
@@ -78,7 +78,7 @@
# tell Perl we already have all of the Mouse files loaded:
EOF
-for my $file (@files) {
+for my $file (sort @files) {
(my $inc = $file) =~ s{^lib/}{};
printf { $handle } "%-45s = __FILE__;\n", "\$INC{'$inc'}";
}
reproducible_build.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment