summaryrefslogtreecommitdiff
path: root/util/xcompile
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2019-06-18 16:53:22 +0200
committerNico Huber <nico.h@gmx.de>2019-06-19 11:27:09 +0000
commitc6a584182e63a9354f4ff875aa1906106ea73a9f (patch)
treed0664819899fc7062e88f3c951b1c73369bd1cef /util/xcompile
parent9d98e5ae0dc0ff0833c762586b296f4f91f9d485 (diff)
downloadcoreboot-c6a584182e63a9354f4ff875aa1906106ea73a9f.tar.xz
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> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33580 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> 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 7ab1cb7af8..050cc59827 100755
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -162,7 +162,7 @@ testas() {
"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