bootstrap
author Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com>
Sat Jul 14 19:52:58 2012 +0200 (2012-07-14)
changeset 2998 7b1dda3ab075
permissions -rwxr-xr-x
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>
yann@2834
     1
#!/bin/sh
yann@2834
     2
set -e
yann@2834
     3
yann@2834
     4
printf "Running autoconf...\n"
yann@2834
     5
autoconf -Wall --force
yann@2834
     6
yann@2834
     7
printf "Done. You may now run:\n    ./configure\n"