Source: projectl Version: 1.001.dfsg1-7 Severity: wishlist Tags: patch User: reproducible-builds@lists.alioth.debian.org Usertags: locale X-Debbugs-Cc: reproducible-builds@lists.alioth.debian.org
Hi! While working on the "reproducible builds" effort [1], we have noticed that projectl could not be built reproducibly. A file list is sorted with "sort", which behaves differently depending on the locale. The attached patch fixes this by sorting with LC_ALL set to C. Regards, Reiner [1]: https://wiki.debian.org/ReproducibleBuilds
diff --git a/debian/patches/makefile.patch b/debian/patches/makefile.patch index 789a4c4..1d9cb0f 100644 --- a/debian/patches/makefile.patch +++ b/debian/patches/makefile.patch @@ -6,7 +6,7 @@ +++ b/Makefile @@ -0,0 +1,11 @@ +GDC=gdc -+DSRC=$(shell find import src -name "*.d" -not -iname '*mpeg*' | sort) ++DSRC=$(shell find import src -name "*.d" -not -iname '*mpeg*' | LC_ALL=C sort) +EXE=projectl + +all: $(EXE)
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Reproducible-builds mailing list Reproducible-builds@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds