diff options
author | John Crispin <john@openwrt.org> | 2015-07-14 09:57:45 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-07-14 09:57:45 +0000 |
commit | 096b3759a98cdbbc710d8620e948eaa7ee2045ed (patch) | |
tree | ddec733630e2353a6f2890b81f65410dbfdf165c /target/linux/generic/files/crypto | |
parent | 3846bb9ac92060669f9c798c3c128057a6d32809 (diff) | |
download | upstream-096b3759a98cdbbc710d8620e948eaa7ee2045ed.tar.gz upstream-096b3759a98cdbbc710d8620e948eaa7ee2045ed.tar.bz2 upstream-096b3759a98cdbbc710d8620e948eaa7ee2045ed.zip |
build: Prevent more gzip timestamps
To improve reproducibility, prevent the inclusion of timestamps
in the gzip header.
Signed-off-by: Reiner Herrmann <reiner@reiner-h.de>
SVN-Revision: 46361
Diffstat (limited to 'target/linux/generic/files/crypto')
-rw-r--r-- | target/linux/generic/files/crypto/ocf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/files/crypto/ocf/Makefile b/target/linux/generic/files/crypto/ocf/Makefile index 110ed83ea6..78d052cec3 100644 --- a/target/linux/generic/files/crypto/ocf/Makefile +++ b/target/linux/generic/files/crypto/ocf/Makefile @@ -144,5 +144,5 @@ release: find $$RELDIR/ocf -name CVS | xargs rm -rf; \ cd $$RELDIR/..; \ tar cvf ocf-linux-$$REL.tar ocf-linux-$$REL; \ - gzip -9 ocf-linux-$$REL.tar + gzip -9n ocf-linux-$$REL.tar |