From e63c14677f4783dba56a385f39e7fe214b446985 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 13 Apr 2025 02:25:01 +0100 Subject: [PATCH] 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 --- mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk b/mk index c004897..0f1afba 100755 --- a/mk +++ b/mk @@ -478,7 +478,7 @@ check_makefile() mkhelp() { - [ -z "$1" ] || [ -n "$mode" ] || "$1" || $err "mkhelp: !$1"; : + [ -z "$1" ] || [ -n "$mode" ] || eval "$1" || $err "mkhelp: !$1"; : } copy_elf()