diff options
author | Chris Packham <judge.packham@gmail.com> | 2022-07-26 20:48:08 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-07-27 20:18:14 +1200 |
commit | 7feb97f137461484e72826b20761c424fbc4a75c (patch) | |
tree | 546737d9a5a4d0909588e0316ae5b1657a64455d /configure.ac | |
parent | 320710f2a9a969f163c5d6c83a02877e7dfd0cba (diff) | |
download | crosstool-ng-7feb97f137461484e72826b20761c424fbc4a75c.tar.gz crosstool-ng-7feb97f137461484e72826b20761c424fbc4a75c.tar.bz2 crosstool-ng-7feb97f137461484e72826b20761c424fbc4a75c.zip |
configure.ac: AC_PROG_LEX set to noyywrap
It appears that noyywrap is actually what is needed for kconfig.
Particularly on arclinux where the default flex installation does not
provide the yywrap function.
Fixes #1790
Fixes 015d039e ("AC_PROG_LEX set to yywrap")
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 21a6b444..ba951f25 100644 --- a/configure.ac +++ b/configure.ac @@ -93,7 +93,7 @@ AC_PROG_CC AM_PROG_CC_C_O AC_PROG_CXX AC_PROG_CPP -AC_PROG_LEX([yywrap]) +AC_PROG_LEX([noyywrap]) AC_PROG_YACC AS_IF([test -z "$CC" -o -z "$CXX"], [AC_MSG_ERROR([no suitable compiler found])]) |