`AM_PROG_LEX` calls `AC_PROG_LEX` with no arguments, but this usage is deprecated. The only difference between `AM_PROG_LEX` and `AC_PROG_LEX` is that the former defines `$LEX` as "./build-aux/missing lex" if no lex is found to ensure a useful error is reported when make is run. How- ever, the configure script checks that we have a working lex and exits with an error if none is available, so `$LEX` will never be called and we can replace `AM_PROG_LEX` with `AC_PROG_LEX`. Signed-off-by: Jeremy Sowden <jeremy@xxxxxxxxxx> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a20c6bb4ca1c..b12b722a3396 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ AM_PROG_AR LT_INIT([disable-static]) AC_PROG_INSTALL AC_PROG_LN_S -AM_PROG_LEX +AC_PROG_LEX([noyywrap]) AC_PROG_YACC case "$host" in -- 2.34.1