From 4e762e4918d8755e762db1db328760dfa5fc7a14 Mon Sep 17 00:00:00 2001 From: Thomas De Schampheleire Date: Sat, 14 Jul 2012 19:52:58 +0200 Subject: kconfig: fix compatibility with older flex versions Older flex versions require there be no space between options and their arguments. For example '-P zconf' is not correct and should be '-Pzconf'. This is for example the case for flex-2.5.4 shipped with CentOS 5.8. Signed-off-by: Thomas De Schampheleire Message-Id: <9652ce148bddc1def484.1339241000@beantl019720> diff --git a/kconfig/Makefile b/kconfig/Makefile index afaf416..a3f1770 100644 --- a/kconfig/Makefile +++ b/kconfig/Makefile @@ -88,7 +88,7 @@ zconf.hash.c: zconf.gperf lex.zconf.c: zconf.l @echo " LEX '$@'" - @flex -L -P zconf -o $@ $< + @flex -L -Pzconf -o$@ $< # Build C files %.o: %.c -- cgit v0.10.2-6-g49f6