From: Martti Rannanjärvi Date: Thu, 19 May 2022 05:32:47 +0000 (+0300) Subject: configure.ac: Use correct path in flex and bison checks X-Git-Tag: 2.4.0~4040 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7e503b0a5691ad4909b26fcd893e6ce5693223df;p=thirdparty%2Fdovecot%2Fcore.git configure.ac: Use correct path in flex and bison checks --- diff --git a/configure.ac b/configure.ac index e9c128c315..e0a7e992d3 100644 --- a/configure.ac +++ b/configure.ac @@ -266,10 +266,10 @@ AC_PROG_CPP AC_PROG_CXX # lucene plugin needs this AC_CHECK_TOOL([FLEX],[flex],[:]) AC_CHECK_TOOL([BISON],[bison],[:]) -AS_IF([test "$BISON" = ":" && test ! -e "$srcdir/lib/event-filter-parser.h"], +AS_IF([test "$BISON" = ":" && test ! -e "$srcdir/src/lib/event-filter-parser.h"], AC_MSG_ERROR([Bison is required when building from git]) ]) -AS_IF([test "$FLEX" = ":" && test ! -e "$srcdir/lib/event-filter-lexer.c"], +AS_IF([test "$FLEX" = ":" && test ! -e "$srcdir/src/lib/event-filter-lexer.c"], AC_MSG_ERROR([flex is required when building from git]) ]) AC_HEADER_STDC