build: Make gzip archives reproducible

This commit is contained in:
Sebastian Huber
2023-08-14 08:25:28 +02:00
parent 663e0dae8a
commit 67925cebd8
+1 -1
View File
@@ -465,7 +465,7 @@ class Item(object):
def gzip(self, bld, source):
target = source + ".gz"
bld(rule="${GZIP} < ${SRC} > ${TGT}", source=source, target=target)
bld(rule="${GZIP} -n < ${SRC} > ${TGT}", source=source, target=target)
return target
def xz(self, bld, source):