diff options
author | andrin-geiger <me@darkdampsquib.com> | 2024-03-25 09:03:22 +0100 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2025-02-17 08:43:31 +1300 |
commit | 7ab4c0c8d7b9676ec2f9bbf2677cbe09777bc6ac (patch) | |
tree | f922a008f7dcf497631a59a51f1383fc18c7a9bc | |
parent | 1e9bf8151513b054f60f34bc89507c31dc242cf0 (diff) | |
download | crosstool-ng-7ab4c0c8d7b9676ec2f9bbf2677cbe09777bc6ac.tar.gz crosstool-ng-7ab4c0c8d7b9676ec2f9bbf2677cbe09777bc6ac.tar.bz2 crosstool-ng-7ab4c0c8d7b9676ec2f9bbf2677cbe09777bc6ac.zip |
Use no-name flag for gzip
Don't save the timestamp in the gzip header to ensure reproducibility.
Signed-off-by: andrin-geiger <me@darkdampsquib.com>
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 6f21739d..caf26679 100644 --- a/Makefile.am +++ b/Makefile.am @@ -65,7 +65,7 @@ bash-completion/ct-ng: bash-completion/ct-ng.in Makefile # Also, lintian is picky about execute-bit on the scripts install-data-hook: rm -f $(DESTDIR)$(man1dir)/$(ctng_progname).1.gz - gzip -9 $(DESTDIR)$(man1dir)/$(ctng_progname).1 + gzip -n -9 $(DESTDIR)$(man1dir)/$(ctng_progname).1 chmod a+x $(DESTDIR)$(pkgdatadir)/scripts/config.guess chmod a+x $(DESTDIR)$(pkgdatadir)/scripts/config.sub rm -f $(DESTDIR)$(pkgdatadir)/LICENSE |