1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 07:04:28 +00:00

Merge pull request #129008 from KoviRobi/fix-noweb-awk

noweb: fix nawk binary name
This commit is contained in:
Jörg Thalheim 2021-07-03 13:45:25 +01:00 committed by GitHub
commit a36393c216
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ lib.fix (noweb: stdenv.mkDerivation rec {
# NOTE: substituteInPlace breaks Icon binaries, so make sure the script
# uses (n)awk before calling.
if grep -q nawk "$f"; then
substituteInPlace "$f" --replace "nawk" "${nawk}/bin/awk"
substituteInPlace "$f" --replace "nawk" "${nawk}/bin/nawk"
fi
done