Source: djview4 Version: 4.10-2 Severity: wishlist Tags: patch User: [email protected] Usertags: timestamps X-Debbugs-Cc: [email protected]
Hi, While working on the "reproducible builds" effort [1], we have noticed that djview4 could not be built reproducibly. The attached patch removes timestamps from the build system. Once applied, djview4 can be built reproducibly in our reproducible toolchain. [1]: https://wiki.debian.org/ReproducibleBuilds Regards, -- ,''`. : :' : Chris Lamb `. `'` [email protected] / chris-lamb.co.uk `-
diff --git a/desktopfiles/Makefile.am b/desktopfiles/Makefile.am index 734b60a..150be62 100644 --- a/desktopfiles/Makefile.am +++ b/desktopfiles/Makefile.am @@ -58,7 +58,7 @@ else endif svg_process =\ -cat $< | gzip >$@ +cat $< | gzip -n >$@ svg_verbose = $(svg_verbose_@AM_V@) svg_verbose_ = $(svg_verbose_@AM_DEFAULT_V@)

