Correctly handle passing multiple kconfig options through meson

This commit is contained in:
Theodore Dubois 2022-08-28 12:01:18 -07:00
parent acd7511280
commit cb1fd5e86d

View File

@ -2,6 +2,6 @@
output="$1"
shift
: > "$output"
for cfg in "$@"; do
for cfg in $@; do
echo "$cfg" >> "$output"
done