summary refs log tree commit diff
diff options
context:
space:
mode:
authorSam Ravnborg <sam@mars.(none)>2005-07-25 12:40:34 +0000
committerSam Ravnborg <sam@mars.(none)>2005-07-25 12:40:34 +0000
commit43af5f23354dbd67d2fd2d523eefad8053ac388b (patch)
treeb9462262808ced29a000e041443e96a8e5f2aa7e
parentd178817803d95e4e3ca270bccd1ae2bed4780977 (diff)
downloadlinux-43af5f23354dbd67d2fd2d523eefad8053ac388b.tar.gz
kbuild: drop -Wundef from HOSTCFLAGS for now
-Wundef caused warnings in the bison generated code in kconfig.
Updating to a newer bison (1.875d) did not fix it. The alternatives
was to correct the autogenerated code or drop -Wundef.
For now -Wundef is dropped from HOSTCFLAGS.

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
---
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 423397f03921..77198748ad71 100644
--- a/Makefile
+++ b/Makefile
@@ -203,7 +203,7 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
 
 HOSTCC  	= gcc
 HOSTCXX  	= g++
-HOSTCFLAGS	= -Wall -Wundef -Wstrict-prototypes -O2 -fomit-frame-pointer
+HOSTCFLAGS	= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
 HOSTCXXFLAGS	= -O2
 
 # 	Decide whether to build built-in, modular, or both.