Source: titanion Version: 0.3.dfsg1-5 Severity: wishlist Tags: patch User: [email protected] Usertags: locale X-Debbugs-Cc: [email protected]
Hi! While working on the "reproducible builds" effort [1], we have noticed that titanion could not be built reproducibly. A file list is sorted differently depending on the locale. The attached patch fixes this by setting LC_ALL to C before sorting. Regards, Reiner [1]: https://wiki.debian.org/ReproducibleBuilds
diff --git a/debian/patches/makefile.patch b/debian/patches/makefile.patch index cf5b7d9..b129412 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/abagames -name "*.d" | sort) ++DSRC=$(shell find import src/abagames -name "*.d" | LC_ALL=C sort) +EXE=titanion + +all: $(EXE)
signature.asc
Description: OpenPGP digital signature

