diff options
author | Nico Huber <nico.h@gmx.de> | 2017-01-02 20:51:28 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-01-04 22:18:24 +0100 |
commit | 2c1c02ea6aaff39de78d0cc2406886200360a71b (patch) | |
tree | 54769ec0296186a235bc51c388e17c41f0685afb /util/crossgcc | |
parent | cf84619dd66789454b14a1dccb7b6c11cbb5e80a (diff) |
buildgcc: Remove quotes around a $CC call
If we use ccache we have to interpret spaces in $CC as separation
characters. The downside is that we can't support spaces in the
compiler's path. But, well...
Change-Id: I4e6e6324389354669a755f570083a40ff00b1bbf
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/18018
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'util/crossgcc')
-rwxr-xr-x | util/crossgcc/buildgcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 273f921a15..0dfca26e04 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -517,7 +517,7 @@ set_hostcflags_from_gmp() { build_GMP() { # Check if GCC enables `-pie` by default (possible since GCC 6). # We need PIC in all static libraries then. - if "${CC}" -dumpspecs 2>/dev/null | grep -q '[{;][[:space:]]*:-pie\>' + if $CC -dumpspecs 2>/dev/null | grep -q '[{;][[:space:]]*:-pie\>' then OPTIONS="$OPTIONS --with-pic" fi |