From e565df94fd7a6a4fb2b6a51c3cd938825c66390e Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Mon, 30 Dec 2024 00:50:53 +0000 Subject: Fix globbing issue in lbmk When doing e.g. $@ we should use double quotes to prevent globbing. Thanks go to XRevan86 for pointing this out. Signed-off-by: Leah Rowe --- script/trees | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'script') diff --git a/script/trees b/script/trees index b9fd21eb..57e19b63 100755 --- a/script/trees +++ b/script/trees @@ -294,6 +294,6 @@ copy_elf() done < "$listfile"; x_ make clean -C "$srcdir" $cleanargs } -main $@ || exit 0 +main "$@" || exit 0 . "$mkhelpercfg" $cmd -- cgit v1.2.1