Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: /
Date: Wed, 02 Oct 2019 22:45:31
Message-Id: 1569797941.45503276b0e4233ad03dcf303fad2dc146862093.whissi@gentoo
1 commit: 45503276b0e4233ad03dcf303fad2dc146862093
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 29 22:59:01 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 29 22:59:01 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=45503276
7
8 gen_determineargs.sh: determine_real_args(): Don't quote tc-getBUILD_CC() return value
9
10 This will allow user to set UTILS_CC="distcc gcc" for example.
11
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 gen_determineargs.sh | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/gen_determineargs.sh b/gen_determineargs.sh
18 index 82ce4ed..f3cfedf 100755
19 --- a/gen_determineargs.sh
20 +++ b/gen_determineargs.sh
21 @@ -490,7 +490,7 @@ determine_real_args() {
22
23 # set CBUILD and CHOST
24 local build_cc=$(tc-getBUILD_CC)
25 - CBUILD=$("${build_cc}" -dumpmachine 2>/dev/null)
26 + CBUILD=$(${build_cc} -dumpmachine 2>/dev/null)
27 if [ -z "${CBUILD}" ]
28 then
29 gen_die "Failed to determine CBUILD using '${build_cc} -dumpmachine' command!"