From cb1fd5e86de26a06403791470cfd0d4c01a894f8 Mon Sep 17 00:00:00 2001 From: Theodore Dubois Date: Sun, 28 Aug 2022 12:01:18 -0700 Subject: [PATCH] Correctly handle passing multiple kconfig options through meson --- deps/kconfig-fragment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/kconfig-fragment.sh b/deps/kconfig-fragment.sh index 05edfa4d..4770ff96 100755 --- a/deps/kconfig-fragment.sh +++ b/deps/kconfig-fragment.sh @@ -2,6 +2,6 @@ output="$1" shift : > "$output" -for cfg in "$@"; do +for cfg in $@; do echo "$cfg" >> "$output" done