* util/import_gcry.py: Sort cipher_files, to make build system

generation more deterministic.
This commit is contained in:
Colin Watson 2012-09-05 09:00:39 +01:00
parent 64498f2538
commit ecadc4c2c4
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-09-05 Colin Watson <cjwatson@ubuntu.com>
* util/import_gcry.py: Sort cipher_files, to make build system
generation more deterministic.
2012-09-05 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/disk/ieee1275/ofdisk.c (scan): Check function return value.

View File

@ -40,7 +40,7 @@ try:
except:
print ("WARNING: %s already exists" % cipher_dir_out)
cipher_files = os.listdir (cipher_dir_in)
cipher_files = sorted (os.listdir (cipher_dir_in))
conf = codecs.open (os.path.join ("grub-core", "Makefile.gcry.def"), "w", "utf-8")
conf.write ("AutoGen definitions Makefile.tpl;\n\n")
confutil = codecs.open ("Makefile.utilgcry.def", "w", "utf-8")