commit: d25606b7d38ad78de84d6b9a388c94a7bb421d28 Author: Austin English <wizardedit <AT> gentoo <DOT> org> AuthorDate: Mon Jun 27 21:57:36 2016 +0000 Commit: Austin English <wizardedit <AT> gentoo <DOT> org> CommitDate: Fri Jul 1 18:42:09 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d25606b7
eclass/toolchain-funcs: avoid backticks eclass/toolchain-funcs.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index 2af9b02..fb8b2f9 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -612,7 +612,7 @@ tc-is-clang() { # compilers rather than maintaining a --version flag matrix. #335943 _gcc_fullversion() { local ver="$1"; shift - set -- `$(tc-getCPP "$@") -E -P - <<<"__GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__"` + set -- $($(tc-getCPP "$@") -E -P - <<<"__GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__") eval echo "$ver" }