Sort certificate list for reproducible builds. #808711

This commit is contained in:
Michael Shuler 2016-01-04 10:59:32 -06:00
parent db2b12518d
commit 24b5bdcb3a
2 changed files with 8 additions and 1 deletions

7
debian/changelog vendored
View file

@ -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

2
debian/rules vendored
View file

@ -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 \