File: reproducible_build.patch

package info (click to toggle)
libnet-tclink-perl 3.4.0-9
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 384 kB
  • ctags: 143
  • sloc: ansic: 673; perl: 95; makefile: 9
file content (18 lines) | stat: -rw-r--r-- 526 bytes parent folder | download | duplicates (3)
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;