File: reproducible_build.patch

package info (click to toggle)
clhep 2.4.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 7,084 kB
  • sloc: cpp: 45,279; sh: 1,343; perl: 28; makefile: 26
file content (13 lines) | stat: -rw-r--r-- 357 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
Author: Reiner Herrmann <reiner@reiner-h.de>
Bug-Debian: https://bugs.debian.org/794398
Last-Update: Sun, 2 Aug 2015 16:09:02 UTC
Description: Sort file list to get reproducible results

--- a/CLHEP/getObjectList.in
+++ b/CLHEP/getObjectList.in
@@ -22,4 +22,4 @@ do
    fi
 done
 
-echo $filelist
+echo $filelist | tr ' ' '\n' | LC_ALL=C sort | tr '\n' ' '