Merge pull request #144913 from trofi/fix-ansifilter-non-determinism

ansifilter: fix non-determinism in gzipped manpages with s/gzip/gzip -n/
This commit is contained in:
Janne Heß
2021-11-07 15:29:17 +01:00
committed by GitHub
+2
View File
@@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
postPatch = ''
substituteInPlace src/makefile --replace "CC=g++" "CC=c++"
# avoid timestamp non-determinism with '-n'
substituteInPlace makefile --replace 'gzip -9f' 'gzip -9nf'
'';
makeFlags = [