Unverified Commit bd1d8b0d authored by Daniel Hiltgen's avatar Daniel Hiltgen Committed by GitHub
Browse files

Merge pull request #2836 from bmwiedemann/gzip

Omit build date from gzip headers
parents 25c29121 76e5d9ec
...@@ -101,7 +101,7 @@ compress_libs() { ...@@ -101,7 +101,7 @@ compress_libs() {
pids="" pids=""
rm -rf ${BUILD_DIR}/lib/*.${LIB_EXT}*.gz rm -rf ${BUILD_DIR}/lib/*.${LIB_EXT}*.gz
for lib in ${BUILD_DIR}/lib/*.${LIB_EXT}* ; do for lib in ${BUILD_DIR}/lib/*.${LIB_EXT}* ; do
gzip --best -f ${lib} & gzip -n --best -f ${lib} &
pids+=" $!" pids+=" $!"
done done
echo echo
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment