mcst-linux-kernel/patches-2024.06.26/extrae-3.2.1/0004-fix-findutils-path.patch

18 lines
541 B
Diff

Fix findutils path
Link:
Subject: fix findutils path
Bug: 123366
Tags: common
diff -rupN a/substitute-all b/substitute-all
--- a/substitute-all 2020-04-15 00:37:08.519118282 +0300
+++ b/substitute-all 2020-04-15 00:37:21.355997257 +0300
@@ -23,5 +23,5 @@ fi
echo "Applying modification in ${PATHTOCHANGE} - Key = ${KEY} for value = ${VALUE}"
-/usr/bin/find ${PATHTOCHANGE} -type f -exec ${SCRIPT_LOCATION} "${SED}" "${KEY}" "${VALUE}" {} \;
+find ${PATHTOCHANGE} -type f -exec ${SCRIPT_LOCATION} "${SED}" "${KEY}" "${VALUE}" {} \;