]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] Minor fix to configure.ac
authorFrancis Dupont <fdupont@isc.org>
Sat, 14 Nov 2015 14:23:00 +0000 (15:23 +0100)
committerFrancis Dupont <fdupont@isc.org>
Sat, 14 Nov 2015 14:23:00 +0000 (15:23 +0100)
configure.ac

index 0467855770198a3364c2ee57438f9fee1cb6e7fb..7f228e54ec23faf85c831047f471a109c7fa76f8 100755 (executable)
@@ -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