blob: 119d9516b37f746da399e7fed89eb3127069158e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Description: sort applet list to make build reproducible
Bug-Debian: https://bugs.debian.org/803140
Author: Reiner Herrmann <reiner@reiner-h.de>
Last-Update: 2015-10-27
--- install/makeappletlist.py
+++ install/makeappletlist.py
@@ -10,7 +10,7 @@
l.append(s)
l.append(s)
modules.append(".".join(l))
- return modules
+ return sorted(modules)
f=open(join("..","lib","p4vasp","applet","appletlist.py"),"w")
f.write("def appletlist():\n")
|