summaryrefslogtreecommitdiffstats
path: root/util/crossgcc
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2016-12-22 22:16:39 +0100
committerNico Huber <nico.h@gmx.de>2016-12-28 03:36:36 +0100
commitae6187f01f29cb383a1d3bba0ce2614b17c18c5a (patch)
treeacf63cc6702cd0c3f6b0b1b4b77dd4484caccfe1 /util/crossgcc
parent85653748a4a503fc8fae82a12e5b7d162f50348c (diff)
downloadcoreboot-ae6187f01f29cb383a1d3bba0ce2614b17c18c5a.tar.gz
coreboot-ae6187f01f29cb383a1d3bba0ce2614b17c18c5a.tar.bz2
coreboot-ae6187f01f29cb383a1d3bba0ce2614b17c18c5a.zip
buildgcc: Fix string comparison operator
Change-Id: I8ff8d51507dcf12cd554c8b4713074a99e47c11e Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/17942 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/crossgcc')
-rwxr-xr-xutil/crossgcc/buildgcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index 30e218811151..b3deda5f3da8 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -572,7 +572,7 @@ build_LIBELF() {
}
build_BINUTILS() {
- if [ $TARGETARCH == "x86_64-elf" ]; then
+ if [ $TARGETARCH = "x86_64-elf" ]; then
ADDITIONALTARGET=",i386-elf"
fi
CC="$CC" ../binutils-${BINUTILS_VERSION}/configure --prefix=$TARGETDIR \