summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-11-01 13:35:06 -0400
committerGaetan Nadon <memsize@videotron.ca>2010-11-01 13:35:06 -0400
commita5d49274162fbaad7dfcf5879e4e229bc7801fe0 (patch)
treed18de06bc22c6ddc5192585dd46ebcf0a656a533
parentc9e521f4ab7d07ee9b4b0ce7779bc939e7051e95 (diff)
config: cfgparse.c is in the root dir and not in src dir
The test for the yacc generated file was done in the wrong directory. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 73c7def..23d925c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -35,7 +35,7 @@ AM_CONFIG_HEADER(config.h)
AC_PROG_YACC
AC_PATH_PROG([YACC_INST], $YACC)
-if test ! -f "$srcdir/cfgparse.c"; then
+if test ! -f "cfgparse.c"; then
if test -z "$YACC_INST"; then
AC_MSG_ERROR([yacc not found - unable to compile cfgparse.y])
fi