From 00652e729bbfc6252387ae68dd1f1d5fd8ba0b33 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 27 Oct 2016 08:28:55 +0200 Subject: [PATCH] UPSTREAM: util/xcompile/xcompile: Add a space before `&&` BUG=None BRANCH=None TEST=None Signed-off-by: Paul Menzel Reviewed-on: https://review.coreboot.org/17159 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi Change-Id: I07fd4d6f6db220e23da8daced6014ce39894c604 Reviewed-on: https://chromium-review.googlesource.com/404979 Commit-Ready: Furquan Shaikh Tested-by: Furquan Shaikh Reviewed-by: Aaron Durbin --- util/xcompile/xcompile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"