diff options
author | Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com> | 2012-07-14 19:52:58 +0200 |
---|---|---|
committer | Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com> | 2012-07-14 19:52:58 +0200 |
commit | 4e762e4918d8755e762db1db328760dfa5fc7a14 (patch) | |
tree | e3af5d6b118113045525c918d3f7e243c8fc6206 | |
parent | b3526f6130f8698875d4ff087acda9366f3ab408 (diff) | |
download | crosstool-ng-4e762e4918d8755e762db1db328760dfa5fc7a14.tar.gz crosstool-ng-4e762e4918d8755e762db1db328760dfa5fc7a14.tar.bz2 crosstool-ng-4e762e4918d8755e762db1db328760dfa5fc7a14.zip |
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 <thomas.de.schampheleire@gmail.com>
Message-Id: <9652ce148bddc1def484.1339241000@beantl019720>
-rw-r--r-- | kconfig/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfig/Makefile b/kconfig/Makefile index afaf4164..a3f1770e 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 |