1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Don't include kernel/machine name to get reproducible build
Bug-Debian: https://bugs.debian.org/828635
Forwarded: not-needed
Author: Reiner Herrmann <reiner@reiner-h.de>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2016-06-26
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -26,7 +26,7 @@
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
-my $platform = `uname -sm`;
+my $platform = "Debian";
chomp($platform);
$platform =~ s/ /-/g;
|