From: Andre Noll Date: Fri, 31 May 2019 18:23:02 +0000 (+0200) Subject: Run gzip with -n. X-Git-Tag: v1.0.1~9 X-Git-Url: http://git.tuebingen.mpg.de/?p=tfortune.git;a=commitdiff_plain;h=59673140b56375e802392331fec7cb4ab42d0ddd;ds=sidebyside Run gzip with -n. It is generally a good idea to not save the local file name and timestamp in the compressed file, as this thwarts reproducible builds. Suggested-by: Adam Borowski --- diff --git a/Makefile b/Makefile index 66f0470..86e9a51 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ MAKEFLAGS += -Rr RM := rm -f MKDIR_P := mkdir -p CHMOD := chmod -GZIP := gzip -f9 +GZIP := gzip -nf9 ifeq ("$(origin CC)", "default") CC := cc