From b15204aa58c09d2a9368aa6c074be086fc481ece Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Fri, 8 Mar 2024 00:42:50 +0100 Subject: [PATCH] mkdir $(builddir}/doc When building separately from the source tree (as in ../src/configure), the 'doc' dir is not present from just the source tree. Create the dir before calling a2x. --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index 688a9849..fef1d8d1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -342,6 +342,7 @@ EXTRA_DIST += \ CLEANFILES += doc/*~ doc/nft.8: $(ASCIIDOCS) + mkdir -p ${builddir}/doc $(AM_V_GEN)$(A2X) $(A2X_OPTS_MANPAGE) $< .adoc.3: -- 2.43.0