From 4fa3bb9e5b18c7812d56b3713a4e0213879a0dc6 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 13 Apr 2025 02:25:01 +0100 Subject: 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 b5dd7db7..29c8ee5d 100755 --- a/mk +++ b/mk @@ -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() -- cgit v1.2.1