diff options
author | Idwer Vollering <vidwer@gmail.com> | 2016-07-24 02:10:19 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2016-09-11 14:27:42 +0200 |
commit | ba349ab12eb5c6848d7e3b727d6fcd7fbe616614 (patch) | |
tree | 50d4b06211ba3f74be956f301f902b381b591fd1 | |
parent | f9aac2f4ac6a999d763ea590b945cb981cd4e3d3 (diff) | |
download | coreboot-ba349ab12eb5c6848d7e3b727d6fcd7fbe616614.tar.xz |
buildgcc: Quote command substitution
There are shells where the result of a command substitution is subject
to word splitting (e.g. dash when assigning a value inside an export
statement).
Change-Id: I70a5bc124af7ee621da2bdb4777f3eaba8adafbb
Signed-off-by: Idwer Vollering <vidwer@gmail.com>
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/15820
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
-rwxr-xr-x | util/crossgcc/buildgcc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index d85891976b..9eb72f9dc8 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -442,8 +442,8 @@ have_hostcflags_from_gmp() { set_hostcflags_from_gmp() { # Now set CFLAGS to match GMP CFLAGS but strip out -pedantic # as GCC 4.6.x fails if it's there. - export HOSTCFLAGS=$(grep __GMP_CFLAGS $DESTDIR$TARGETDIR/include/gmp.h |cut -d\" -f2 |\ - sed s,-pedantic,,) + export HOSTCFLAGS="$(grep __GMP_CFLAGS $DESTDIR$TARGETDIR/include/gmp.h |cut -d\" -f2 |\ + sed s,-pedantic,,)" } build_GMP() { |