commit: eb5509b929cf162ecb1bea35f7aa4e3d150edf6d
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 2 16:47:56 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Nov 2 16:56:08 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=eb5509b9
targets: Expand extra_opts into separate words
I introduced this mistaken when reworking the patch referenced below.
Fixes: 7e1ea3ac ("Build ISO with Joliet directory information")
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
targets/support/create-iso.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
index a5d5194e..70684f78 100755
--- a/targets/support/create-iso.sh
+++ b/targets/support/create-iso.sh
@@ -197,7 +197,7 @@ case ${clst_hostarch} in
esac
echo ">> Running grub-mkrescue to create iso image...."
- grub-mkrescue "${extra_opts[*]}" -o "${1}" "${clst_target_path}"
+ grub-mkrescue "${extra_opts[@]}" -o "${1}" "${clst_target_path}"
;;
esac
exit $?