# HG changeset patch # User Thomas De Schampheleire # Date 1342288378 -7200 # Node ID 7b1dda3ab07505bc1627d6fa70c60c7cd003eb3d # Parent 46f217337e1324e629ea0863d68c22c8347d5008 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 -r 46f217337e13 -r 7b1dda3ab075 kconfig/Makefile --- a/kconfig/Makefile Mon Jul 02 19:49:02 2012 +0200 +++ b/kconfig/Makefile Sat Jul 14 19:52:58 2012 +0200 @@ -88,7 +88,7 @@ lex.zconf.c: zconf.l @echo " LEX '$@'" - @flex -L -P zconf -o $@ $< + @flex -L -Pzconf -o$@ $< # Build C files %.o: %.c