mk: use eval to run mkhelp commands

directly quoting it and running it quoted means
that the shell way try to execute it as a file.

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-04-13 02:25:01 +01:00
parent 9b3635718a
commit 4fa3bb9e5b
+1 -1
View File
@@ -479,7 +479,7 @@ check_makefile()
mkhelp()
{
[ -z "$1" ] || [ -n "$mode" ] || "$1" || $err "mkhelp: !$1"; :
[ -z "$1" ] || [ -n "$mode" ] || eval "$1" || $err "mkhelp: !$1"; :
}
copy_elf()