]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
ensure that we do adoc -> man conversions, too
authorAlan T. DeKok <aland@freeradius.org>
Thu, 28 Jan 2021 13:32:10 +0000 (08:32 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 28 Jan 2021 13:32:10 +0000 (08:32 -0500)
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

Makefile

index 296f7e6dc853391c74c3d2ea3edf20e0cc093032..a3260d5fcdeb66fe362d3ed095096a99b45abf2e 100644 (file)
--- 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/%