From: Matthew Newton Date: Thu, 29 Sep 2022 09:03:01 +0000 (+0100) Subject: re-add the rule that actually lets make reconfig work for modules X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fd6224f27971a80151fb244d5163bdf71eade87;p=thirdparty%2Ffreeradius-server.git re-add the rule that actually lets make reconfig work for modules --- diff --git a/src/modules/all.mk b/src/modules/all.mk index c2e9519b639..ad2a6287239 100644 --- a/src/modules/all.mk +++ b/src/modules/all.mk @@ -25,3 +25,11 @@ ifeq "$(MAKECMDGOALS)" "check.configure" src/modules/%/configure: src/modules/%/configure.ac @echo WARNING - may need "'make reconfig'" for AUTOCONF $(dir $@) endif + +ifeq "$(MAKECMDGOALS)" "reconfig" +src/modules/%/configure: src/modules/%/configure.ac + @echo AUTOCONF $(dir $@) + @cd $(dir $@) && \ + $(ACLOCAL) -I $(top_builddir)/m4 && \ + $(AUTOCONF) +endif