Omit build date from gzip headers
See https://reproducible-builds.org/ for why this is good. This patch was done while working on reproducible builds for openSUSE.
This commit is contained in:
parent
076237b8ea
commit
76e5d9ec88
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ compress_libs() {
|
|||
pids=""
|
||||
rm -rf ${BUILD_DIR}/lib/*.${LIB_EXT}*.gz
|
||||
for lib in ${BUILD_DIR}/lib/*.${LIB_EXT}* ; do
|
||||
gzip --best -f ${lib} &
|
||||
gzip -n --best -f ${lib} &
|
||||
pids+=" $!"
|
||||
done
|
||||
echo
|
||||
|
|
Loading…
Reference in a new issue