]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
re-add the rule that actually lets make reconfig work for modules
authorMatthew Newton <matthew-git@newtoncomputing.co.uk>
Thu, 29 Sep 2022 09:03:01 +0000 (10:03 +0100)
committerMatthew Newton <matthew-git@newtoncomputing.co.uk>
Thu, 29 Sep 2022 13:35:59 +0000 (14:35 +0100)
src/modules/all.mk

index c2e9519b63904765f276d9ee48fc94e7539f6390..ad2a6287239eff2481056adc670ec1f975dfa65e 100644 (file)
@@ -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