diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2016-02-01 12:02:29 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-02-02 14:35:11 +0100 |
commit | f92068d9c24f295983e4904d327f342ae39cb9ed (patch) | |
tree | 8b0dd02b2502cd83dd83303f1397d3ec1549c81a /Makefile | |
parent | f76ceea7051a29883fdaab16e5879f5f742384e5 (diff) |
build system: avoid setting HOSTCC to " gcc"
Change-Id: I650b3a347edc2d575c5cbee2051f8ed7b4bd1645
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: https://review.coreboot.org/13544
Tested-by: build bot (Jenkins)
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -82,7 +82,7 @@ endif # Disable implicit/built-in rules to make Makefile errors fail fast. .SUFFIXES: -HOSTCC := $(if $(shell type gcc 2>/dev/null), gcc, cc) +HOSTCC := $(if $(shell type gcc 2>/dev/null),gcc,cc) HOSTCXX = g++ HOSTCFLAGS := -g HOSTCXXFLAGS := -g |