# HG changeset patch # User Thomas De Schampheleire # Date 1342288378 -7200 # Node ID 740867bd81ca0795ca114d1e467cf2d1c0e3ec9b # Parent 1f1a622c5c095ea3318a959457619a61d5e528c0 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> (transplanted from 7b1dda3ab07505bc1627d6fa70c60c7cd003eb3d) diff -r 1f1a622c5c09 -r 740867bd81ca kconfig/Makefile --- a/kconfig/Makefile Sun Jun 10 23:51:40 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