From: Ruben Kerkhof Date: Sat, 23 Apr 2016 19:28:31 +0000 (+0200) Subject: AC_CONFIG_SRCDIR needs to point to a unique file X-Git-Tag: collectd-5.6.0~321 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=dbb211a7508621dbc9b36d5179c3aa5bad6e280a;p=collectd.git AC_CONFIG_SRCDIR needs to point to a unique file AC_CONFIG_SRCDIR is a bit of a misnomer, in that it should point to a unique file in the top source directory, not to the directory itself. --- diff --git a/configure.ac b/configure.ac index 73dd27e2..1fcab1c8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([collectd],[m4_esyscmd(./version-gen.sh)]) -AC_CONFIG_SRCDIR(src/) +AC_CONFIG_SRCDIR(src/target_set.c) AC_CONFIG_HEADERS(src/config.h) AC_CONFIG_AUX_DIR([libltdl/config])