From: Alan T. DeKok Date: Fri, 1 Mar 2013 16:10:42 +0000 (-0500) Subject: Configure scripts depend on local macro files, too X-Git-Tag: release_3_0_0_beta1~886 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9de11ab946d70e6cc8ac82f2f0ed2dba36fdd3ff;p=thirdparty%2Ffreeradius-server.git Configure scripts depend on local macro files, too --- diff --git a/Makefile b/Makefile index d1eac352837..f0dba5e9ad4 100644 --- a/Makefile +++ b/Makefile @@ -119,9 +119,9 @@ distclean: clean CONFIGURE_IN_FILES := $(shell find . -name configure.in -print) CONFIGURE_FILES := $(patsubst %.in,%,$(CONFIGURE_IN_FILES)) -# Configure files depend on "in" files. +# Configure files depend on "in" files, and on the top-level macro files # If there are headers, run auto-header, too. -src/%configure: src/%configure.in +src/%configure: src/%configure.in acinclude.m4 aclocal.m4 @echo AUTOCONF $@ @cd $(dir $@) && $(AUTOCONF) -I $(top_builddir) @if grep AC_CONFIG_HEADERS $@ >/dev/null; then\