libdevil: Retarget substitute command

`test/Makefile.in` is not included but we can apply the same substitute
to `test/Makefile.am`.
This commit is contained in:
toonn 2024-06-12 14:17:05 +02:00
parent f353aa412b
commit adf72c84ce
No known key found for this signature in database
GPG Key ID: 89EECD463032D959

View File

@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: {
enableParallelBuilding = true;
postPatch = ''
for a in test/Makefile.in test/format_test/format_checks.sh.in ; do
for a in test/Makefile.am test/format_test/format_checks.sh.in ; do
substituteInPlace $a \
--replace /bin/bash ${runtimeShell}
done