Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/33580
Change subject: xcompile: Fix harmless typo ......................................................................
xcompile: Fix harmless typo
As CFLAGS_GCC and CFLAGS_CLANG are still the same at this point, this just removes some duplicate flags.
Change-Id: I532e5fa146891b70e4c1949c614b280055524593 Signed-off-by: Nico Huber nico.huber@secunet.com --- M util/xcompile/xcompile 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/80/33580/1
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 052b88f..91b0c2b 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -162,7 +162,7 @@ "elf32-i386" ) LDFLAGS="$LDFLAGS -melf_i386" CFLAGS_GCC="$CFLAGS_GCC -Wl,-b,elf32-i386 -Wl,-melf_i386" - CFLAGS_CLANG="$CFLAGS_GCC -Wl,-b,elf32-i386 -Wl,-melf_i386" + CFLAGS_CLANG="$CFLAGS_CLANG -Wl,-b,elf32-i386 -Wl,-melf_i386" ;; esac