diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2016-10-27 08:28:55 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-10-28 20:16:13 +0200 |
commit | 246051c22ce598db0bcf7dc93399cbdc380ddaad (patch) | |
tree | 6c8e964d953b18e63cfa192f9867e8f25c7595c3 /util/xcompile | |
parent | 083e2e4ec4a78a19f0b00e54c649830151c18f4d (diff) |
util/xcompile/xcompile: Add a space before `&&`
Change-Id: I07fd4d6f6db220e23da8daced6014ce39894c604
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/17159
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/xcompile')
-rwxr-xr-x | util/xcompile/xcompile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 37e6404950..90220f6c5c 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -182,7 +182,7 @@ detect_special_flags() { testcc "$GCC" "$CFLAGS_GCC -fuse-ld=bfd" && CFLAGS_GCC="$CFLAGS_GCC -fuse-ld=bfd" && LINKER_SUFFIX='.bfd' - testcc "$GCC" "$CFLAGS_GCC -fno-stack-protector"&& + testcc "$GCC" "$CFLAGS_GCC -fno-stack-protector" && CFLAGS_GCC="$CFLAGS_GCC -fno-stack-protector" testcc "$GCC" "$CFLAGS_GCC -Wl,--build-id=none" && CFLAGS_GCC="$CFLAGS_GCC -Wl,--build-id=none" |