projects
/
gentoo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a2b74d
)
eclass/toolchain-funcs: avoid backticks
author
Austin English
<wizardedit@gentoo.org>
Mon, 27 Jun 2016 21:57:36 +0000
(16:57 -0500)
committer
Austin English
<wizardedit@gentoo.org>
Fri, 1 Jul 2016 18:42:09 +0000
(13:42 -0500)
eclass/toolchain-funcs.eclass
patch
|
blob
|
history
diff --git
a/eclass/toolchain-funcs.eclass
b/eclass/toolchain-funcs.eclass
index 2af9b024ae373032e00fc0953c2215e853f0b44b..fb8b2f92742c3e7631c17563c41d321d0804d835 100644
(file)
--- 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"
}