diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2012-05-11 12:58:11 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-05-24 22:22:12 +0200 |
commit | 89ba15a0c176f8c6966938cba290da8a8bd9d714 (patch) | |
tree | 0bab4b9a995b2d021e548ecb9cf741b72d8c5796 /util | |
parent | f0269127760f1081c3df47aa93b5946d6af411df (diff) |
chromeos: Fix compilation of coreboot-utils package
The ChromeOS build system provides a set of CXXFLAGS, however those do
not contain -DCOMPACT. This breaks the compilation of cbfstool in
coreboot-utils.
This fix overrides CXXFLAGS so that coreboot-utils compiles again.
Change-Id: If9495bdd815fe2cdaeba5386afa953558742467b
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/1038
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/cbfstool/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/Makefile b/util/cbfstool/Makefile index 0b61342bd2..7d667f894f 100644 --- a/util/cbfstool/Makefile +++ b/util/cbfstool/Makefile @@ -3,7 +3,7 @@ obj ?= $(shell pwd) HOSTCXX ?= g++ HOSTCC ?= gcc CFLAGS ?= -g -Wall -CXXFLAGS ?=-DCOMPACT $(CFLAGS) +CXXFLAGS +=-DCOMPACT $(CFLAGS) LDFLAGS ?= -g BINARY:=$(obj)/cbfstool |