diff options
author | Francis Dupont <fdupont@isc.org> | 2015-11-14 15:23:00 +0100 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2015-11-14 15:23:00 +0100 |
commit | e2ec18f60b8e0cafcd88bffa5f02c9f202342034 (patch) | |
tree | 912bcfdc14c691c7191e71c70d5f5fb39cacbc21 /configure.ac | |
parent | [master] Updated git hash (diff) | |
download | kea-e2ec18f60b8e0cafcd88bffa5f02c9f202342034.tar.xz kea-e2ec18f60b8e0cafcd88bffa5f02c9f202342034.zip |
[master] Minor fix to configure.ac
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
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 |