Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/
Date: Mon, 02 Nov 2020 17:05:45
Message-Id: 1604336168.eb5509b929cf162ecb1bea35f7aa4e3d150edf6d.mattst88@gentoo
1 commit: eb5509b929cf162ecb1bea35f7aa4e3d150edf6d
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 2 16:47:56 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 2 16:56:08 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=eb5509b9
7
8 targets: Expand extra_opts into separate words
9
10 I introduced this mistaken when reworking the patch referenced below.
11
12 Fixes: 7e1ea3ac ("Build ISO with Joliet directory information")
13 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
14
15 targets/support/create-iso.sh | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
19 index a5d5194e..70684f78 100755
20 --- a/targets/support/create-iso.sh
21 +++ b/targets/support/create-iso.sh
22 @@ -197,7 +197,7 @@ case ${clst_hostarch} in
23 esac
24
25 echo ">> Running grub-mkrescue to create iso image...."
26 - grub-mkrescue "${extra_opts[*]}" -o "${1}" "${clst_target_path}"
27 + grub-mkrescue "${extra_opts[@]}" -o "${1}" "${clst_target_path}"
28 ;;
29 esac
30 exit $?