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:
commit
faf28d5055
1 changed files with 2 additions and 0 deletions
|
@ -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 = [
|
||||
|
|
Loading…
Reference in a new issue