summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shuler <michael@pbandjelly.org>2016-01-04 10:59:32 -0600
committerMichael Shuler <michael@pbandjelly.org>2016-01-04 10:59:32 -0600
commit24b5bdcb3a3ede1d9664958b55cd480fc43e97b3 (patch)
treeb1ff6560ebdfe00c19b058f9c8873a467e03494e
parentdb2b12518de6c1e6cdafdc5a5b8acb1824dcee40 (diff)
downloadca-certificates-24b5bdcb3a3ede1d9664958b55cd480fc43e97b3.tar.gz
Sort certificate list for reproducible builds. #808711
-rw-r--r--debian/changelog7
-rwxr-xr-xdebian/rules2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 7732610..740af67 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+ca-certificates (20161014) UNRELEASED; urgency=medium
+
+ * debian/rules:
+ Sort certificate list for reproducible builds. Closes: #808711
+
+ -- Michael Shuler <michael@pbandjelly.org> Mon, 04 Jan 2016 10:55:26 -0600
+
ca-certificates (20151214) unstable; urgency=medium
* Removed SPI CA. Closes: #796208
diff --git a/debian/rules b/debian/rules
index ddd7cee..fd4632b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -44,7 +44,7 @@ install: build
$(MAKE) install DESTDIR=$(CURDIR)/debian/ca-certificates
(cd $(CURDIR)/debian/ca-certificates/usr/share/ca-certificates; \
crts=""; \
- for crt in $$(find . -type f -name '*.crt' -print); \
+ for crt in $$(find . -type f -name '*.crt' -print | LC_ALL=C sort); \
do \
crt=$$(echo $$crt | sed -e 's/\.\///'); \
if test "$$crts" = ""; then \