2013-05-02 20:54:52 +00:00
|
|
|
From 53a8f5760591b14160bc07ef10f083882516ad27 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Colin Watson <cjwatson@ubuntu.com>
|
|
|
|
Date: Wed, 5 Sep 2012 09:00:39 +0100
|
2013-06-12 19:24:37 +00:00
|
|
|
Subject: [PATCH 030/482] * util/import_gcry.py: Sort cipher_files, to make
|
2013-05-02 20:54:52 +00:00
|
|
|
build system generation more deterministic.
|
|
|
|
|
|
|
|
---
|
|
|
|
ChangeLog | 5 +++++
|
|
|
|
util/import_gcry.py | 2 +-
|
|
|
|
2 files changed, 6 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/ChangeLog b/ChangeLog
|
|
|
|
index ff982b3..9124825 100644
|
|
|
|
--- a/ChangeLog
|
|
|
|
+++ b/ChangeLog
|
|
|
|
@@ -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.
|
|
|
|
diff --git a/util/import_gcry.py b/util/import_gcry.py
|
|
|
|
index 18966a6..64c5870 100644
|
|
|
|
--- a/util/import_gcry.py
|
|
|
|
+++ b/util/import_gcry.py
|
|
|
|
@@ -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")
|
|
|
|
--
|
2013-06-07 18:03:56 +00:00
|
|
|
1.8.2.1
|
2013-05-02 20:54:52 +00:00
|
|
|
|