From: Francis Dupont Date: Sat, 14 Nov 2015 14:23:00 +0000 (+0100) Subject: [master] Minor fix to configure.ac X-Git-Tag: trac4201_base~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2ec18f60b8e0cafcd88bffa5f02c9f202342034;p=thirdparty%2Fkea.git [master] Minor fix to configure.ac --- diff --git a/configure.ac b/configure.ac index 0467855770..7f228e54ec 100755 --- a/configure.ac +++ b/configure.ac @@ -1225,14 +1225,14 @@ AC_PROG_LEX # unless you want to regenerate grammar in src/lib/eval AC_PROG_YACC -if test "x$enable_generate_parser" != xno; then +if test "x$enable_generate_parser" != "xno"; then if test "x$LEX" == "x"; then - AC_MSG_ERROR("Flex is required for enable-generate-parser, but was not found") + AC_MSG_ERROR([Flex is required for enable-generate-parser, but was not found]) fi if test "x$YACC" == "x"; then - AC_MSG_ERROR("Bison it required for enable-generate-parser, but was not found") + AC_MSG_ERROR([Bison is required for enable-generate-parser, but was not found]) fi # Ok, let's check if we have at least 3.0.0 version of the bison. The code used