summaryrefslogtreecommitdiff
path: root/util/xcompile
diff options
context:
space:
mode:
authorPaul Menzel <paulepanter@users.sourceforge.net>2016-10-27 08:28:55 +0200
committerMartin Roth <martinroth@google.com>2016-10-28 20:16:13 +0200
commit246051c22ce598db0bcf7dc93399cbdc380ddaad (patch)
tree6c8e964d953b18e63cfa192f9867e8f25c7595c3 /util/xcompile
parent083e2e4ec4a78a19f0b00e54c649830151c18f4d (diff)
downloadcoreboot-246051c22ce598db0bcf7dc93399cbdc380ddaad.tar.gz
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-xutil/xcompile/xcompile2
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"