abuild-sign: dont set timestamp in gzip

This improves reproducibility of builds
This commit is contained in:
Natanael Copa 2019-11-07 13:23:36 +00:00
parent b80a27b86a
commit 672032a4be
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ do_sign() {
fi
tmptargz=$(mktemp)
tar -f - -c "$sig" | abuild-tar --cut | $gzip -9 > "$tmptargz"
tar -f - -c "$sig" | abuild-tar --cut | $gzip -n -9 > "$tmptargz"
tmpsigned=$(mktemp)
cat "$tmptargz" "$i" > "$tmpsigned"
rm -f "$tmptargz" "$sig"