Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 01 Jul 2016 18:42:52
Message-Id: 1467398529.d25606b7d38ad78de84d6b9a388c94a7bb421d28.wizardedit@gentoo
1 commit: d25606b7d38ad78de84d6b9a388c94a7bb421d28
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 27 21:57:36 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 1 18:42:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d25606b7
7
8 eclass/toolchain-funcs: avoid backticks
9
10 eclass/toolchain-funcs.eclass | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
14 index 2af9b02..fb8b2f9 100644
15 --- a/eclass/toolchain-funcs.eclass
16 +++ b/eclass/toolchain-funcs.eclass
17 @@ -612,7 +612,7 @@ tc-is-clang() {
18 # compilers rather than maintaining a --version flag matrix. #335943
19 _gcc_fullversion() {
20 local ver="$1"; shift
21 - set -- `$(tc-getCPP "$@") -E -P - <<<"__GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__"`
22 + set -- $($(tc-getCPP "$@") -E -P - <<<"__GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__")
23 eval echo "$ver"
24 }