From 76e5d9ec8857762108d355f0d693cf23ec695881 Mon Sep 17 00:00:00 2001 From: "Bernhard M. Wiedemann" Date: Thu, 29 Feb 2024 16:48:19 +0100 Subject: [PATCH] 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. --- llm/generate/gen_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llm/generate/gen_common.sh b/llm/generate/gen_common.sh index b3599364..c6209f45 100644 --- a/llm/generate/gen_common.sh +++ b/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