From 9a07118b716f168ff5b8c0c718862b3a72e4ab77 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 21 Aug 2024 14:29:58 +0000 Subject: [PATCH] make.sh: Remove the brackets from build options Signed-off-by: Michael Tremer --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 6516f9dc0..a5cc4b150 100755 --- a/make.sh +++ b/make.sh @@ -192,7 +192,7 @@ print_package() { # Add the options if [ -n "${options}" ]; then - string="${string} (${options[@]})" + string="${string} ${options[@]}" fi # Print the string -- 2.39.5