Browse Source

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.
Bernhard M. Wiedemann 1 year ago
parent
commit
76e5d9ec88
1 changed files with 1 additions and 1 deletions
  1. 1 1
      llm/generate/gen_common.sh

+ 1 - 1
llm/generate/gen_common.sh

@@ -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