File: reproducible-build.patch

package info (click to toggle)
libpdl-netcdf-perl 4.20-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 572 kB
  • ctags: 8
  • sloc: makefile: 26
file content (16 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Sort RETVAL keys for reproducible build
Author: Reiner Herrmann <reiner@reiner-h.de>
Bug-Debian: https://bugs.debian.org/829322
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=115393

--- a/netcdf.pd
+++ b/netcdf.pd
@@ -822,7 +822,7 @@ sub create_low_level {
     $xsout .= ");\n";
     $xsout .= "OUTPUT:\n";
     $xsout .= "\tRETVAL\n";
-    foreach $var (keys %output) {
+    foreach $var (sort keys %output) {
       $xsout .= "\t$var\n";
     }
     $xsout .= "\n\n";