diff options
Diffstat (limited to 'ld/configure')
-rwxr-xr-x | ld/configure | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ld/configure b/ld/configure index 65b280c..2141ee7 100755 --- a/ld/configure +++ b/ld/configure @@ -16130,8 +16130,9 @@ fi done test -n "$LEX" || LEX=":" -if test "x$LEX" != "x:"; then - cat >conftest.l <<_ACEOF +case "$LEX" in + :|*"missing "*) ;; + *) cat >conftest.l <<_ACEOF %% a { ECHO; } b { REJECT; } @@ -16242,8 +16243,8 @@ $as_echo "#define YYTEXT_POINTER 1" >>confdefs.h fi rm -f conftest.l $LEX_OUTPUT_ROOT.c - -fi + ;; +esac if test "$LEX" = :; then LEX=${am_missing_run}flex fi |