diff options
author | Vivia Nikolaidou <vivia.nikolaidou@puri.sm> | 2018-04-28 01:21:44 +0300 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-04-28 07:16:58 +0000 |
commit | 81084368d0ad9b4e783a6a5fb7f9ae22966f0cdb (patch) | |
tree | 4134ed8f6f4fdd6e73698f25fbb33c02a396ae02 | |
parent | c0451791bf7ba3a378e05bb467cdb50939e0e8e0 (diff) | |
download | coreboot-81084368d0ad9b4e783a6a5fb7f9ae22966f0cdb.tar.xz |
buildgcc: Add missing '\'
That caused the CFLAGS, CXXFLAGS, and '|| touch .failed' to not be taken
into account when building binutils.
Change-Id: I94521eb73cefdc5ed01fbf10122966a54cc28166
Signed-off-by: Vivia Nikolaidou <vivia.nikolaidou@puri.sm>
Reviewed-on: https://review.coreboot.org/25901
Reviewed-by: Youness Alaoui <snifikino@gmail.com>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-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 743937a783..edcea7ab42 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -681,7 +681,7 @@ build_BINUTILS() { --target=${TARGETARCH} --enable-targets=${TARGETARCH}${ADDITIONALTARGET} \ --disable-werror --disable-nls --enable-lto --enable-gold \ --enable-interwork --enable-multilib \ - --enable-plugins --enable-multilibs + --enable-plugins --enable-multilibs \ CFLAGS="$HOSTCFLAGS" \ CXXFLAGS="$HOSTCFLAGS" \ || touch .failed |