commit: 2a56383bb88211e5d18aa2f9e2c5332252ff6d17
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 29 13:46:26 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Jul 29 20:02:20 2019 +0000
URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=2a56383b
gkbuild.sh: gkconf(): Quote sysroot
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
worker_modules/gkbuild.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/worker_modules/gkbuild.sh b/worker_modules/gkbuild.sh
index e6b90b2..136fe17 100644
--- a/worker_modules/gkbuild.sh
+++ b/worker_modules/gkbuild.sh
@@ -622,7 +622,7 @@ gkconf() {
fi
if [[ ${conf_help} == *--with-sysroot* ]]; then
- conf_args+=( --with-sysroot="${BROOT}/usr:${SYSROOT}" )
+ conf_args+=( "--with-sysroot='${BROOT}/usr:${SYSROOT}'"
)
fi
# Handle arguments containing quoted whitespace (see bug
#457136).