x16: substitute --replace with --replace-fail

This commit is contained in:
Roland Coeurjoly 2024-08-25 17:07:30 +02:00
parent b691f9cac2
commit 7de56ac5c4
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ stdenv.mkDerivation (finalAttrs: {
postPatch = ''
substituteInPlace Makefile \
--replace '/bin/echo' 'echo'
--replace-fail '/bin/echo' 'echo'
'';
dontConfigure = true;

View File

@ -26,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: {
postPatch = ''
patchShebangs findsymbols scripts/
substituteInPlace Makefile \
--replace '/bin/echo' 'echo'
--replace-fail '/bin/echo' 'echo'
'';
dontConfigure = true;