Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: worker_modules/
Date: Mon, 29 Jul 2019 20:10:34
Message-Id: 1564430540.2a56383bb88211e5d18aa2f9e2c5332252ff6d17.whissi@gentoo
1 commit: 2a56383bb88211e5d18aa2f9e2c5332252ff6d17
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 29 13:46:26 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 29 20:02:20 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=2a56383b
7
8 gkbuild.sh: gkconf(): Quote sysroot
9
10 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 worker_modules/gkbuild.sh | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/worker_modules/gkbuild.sh b/worker_modules/gkbuild.sh
16 index e6b90b2..136fe17 100644
17 --- a/worker_modules/gkbuild.sh
18 +++ b/worker_modules/gkbuild.sh
19 @@ -622,7 +622,7 @@ gkconf() {
20 fi
21
22 if [[ ${conf_help} == *--with-sysroot* ]]; then
23 - conf_args+=( --with-sysroot="${BROOT}/usr:${SYSROOT}" )
24 + conf_args+=( "--with-sysroot='${BROOT}/usr:${SYSROOT}'" )
25 fi
26
27 # Handle arguments containing quoted whitespace (see bug #457136).