From: Marc Fournier Date: Sat, 27 Feb 2016 23:49:59 +0000 (+0100) Subject: configure.ac: fix path when testing for liboconfig/parser.c presence X-Git-Tag: collectd-5.5.2~6^2~34 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=8de8814283aa62c1bb29324d9814437da710850f;p=collectd.git configure.ac: fix path when testing for liboconfig/parser.c presence --- diff --git a/configure.ac b/configure.ac index 912aa917..5c6720c3 100644 --- a/configure.ac +++ b/configure.ac @@ -68,9 +68,9 @@ AC_CACHE_CHECK([if bison is the parser generator], )] ) -if test "x$collectd_cv_prog_bison" = "xno" && test ! -f "${srcdir}/liboconfig/parser.c" +if test "x$collectd_cv_prog_bison" = "xno" && test ! -f "${srcdir}/src/liboconfig/parser.c" then - AC_MSG_ERROR([bison is missing and you do not have ${srcdir}/liboconfig/parser.c. Please install bison]) + AC_MSG_ERROR([bison is missing and you do not have ${srcdir}/src/liboconfig/parser.c. Please install bison]) fi AC_CHECK_PROG([have_protoc_c], [protoc-c], [yes], [no])