From 8de8814283aa62c1bb29324d9814437da710850f Mon Sep 17 00:00:00 2001 From: Marc Fournier Date: Sun, 28 Feb 2016 00:49:59 +0100 Subject: [PATCH] configure.ac: fix path when testing for liboconfig/parser.c presence --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]) -- 2.11.0