commit: 260dd59d9d770b86ba05f58e30b869f634649ce0
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 2 20:29:52 2018 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Oct 2 20:29:52 2018 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=260dd59d
kmerge.sh: fix quoting on gk_mainargs fix
targets/support/kmerge.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/targets/support/kmerge.sh b/targets/support/kmerge.sh
index a2ebe093..c43db8d1 100755
--- a/targets/support/kmerge.sh
+++ b/targets/support/kmerge.sh
@@ -20,7 +20,7 @@ setup_gk_args() {
# extra genkernel options that we have to test for
if [ -n "${clst_gk_mainargs}" ]
then
- GK_ARGS+=("${clst_gk_mainargs}")
+ GK_ARGS+=(${clst_gk_mainargs})
fi
if [ -n "${clst_KERNCACHE}" ]
then