From: Alan T. DeKok Date: Thu, 28 Jan 2021 13:32:10 +0000 (-0500) Subject: ensure that we do adoc -> man conversions, too X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3ea0a251eae301119d1a2467792e4f60dfed6d8;p=thirdparty%2Ffreeradius-server.git ensure that we do adoc -> man conversions, too because $(wildcard ...) will only pick up files which exist in the directory. the auto-generated "man" files might not, so we need to add a dependency so that they are created, too --- diff --git a/Makefile b/Makefile index 296f7e6dc8..a3260d5fcd 100644 --- a/Makefile +++ b/Makefile @@ -137,7 +137,7 @@ $(R)$(dictdir)/%: share/dictionary/% dictionary.format: $(DICTIONARIES) @./scripts/dict/format.pl $(DICTIONARIES) -MANFILES := $(wildcard man/man*/*.?) +MANFILES := $(wildcard man/man*/*.?) $(AUTO_MAN_FILES) install.man: $(subst man/,$(R)$(mandir)/,$(MANFILES)) $(R)$(mandir)/%: man/%