diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2015-09-16 16:19:26 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-09-17 07:40:44 +0000 |
commit | cdeb1c4f61b62cb161beb37d841757d3f764425d (patch) | |
tree | ad84c398d44e96cfe5a9b01489ba4566a3800999 | |
parent | 08c10a9cbceb21de260f277751d164d1c285f1c0 (diff) |
cbfstool: actually use no-ms-bitfields flag on mingw
It was added to an unused variable.
Change-Id: I869ffdda7e04b5c615931473c760d66b803fb98b
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/11673
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
-rw-r--r-- | util/cbfstool/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/Makefile.inc b/util/cbfstool/Makefile.inc index 99df7d7858..2a3dedfc66 100644 --- a/util/cbfstool/Makefile.inc +++ b/util/cbfstool/Makefile.inc @@ -53,7 +53,7 @@ TOOLCPPFLAGS += -I$(objutil)/cbfstool TOOLLDFLAGS ?= ifeq ($(shell uname -s | cut -c-7 2>/dev/null), MINGW32) -TOOLFLAGS+=-mno-ms-bitfields +TOOLCFLAGS += -mno-ms-bitfields endif $(objutil)/cbfstool/%.o: $(objutil)/cbfstool/%.c |