From f2458d310b41bd98a76065fb477e78c7eb86adea Mon Sep 17 00:00:00 2001 From: Jim Klimov Date: Mon, 1 Apr 2024 19:29:34 +0000 Subject: [PATCH] Makefile.am: avoid parallelizing "doc" and "all-recursive" just in case (only follow up by "make doc") Maybe this is behind duplicate man page builds which tend to step on each other's toes. Signed-off-by: Jim Klimov --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 08de3eb46a..7153c9e558 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,7 +15,8 @@ # missing e.g. PDF and HTML which then pop up in `make check` footprint, # or misses a .prep-src-docs stage needed to pattern-make man page files # with some "make" implementations... -all all-am-local all-local: doc all-recursive +all all-am-local all-local: all-recursive + +@$(MAKE) $(AM_MAKEFLAGS) doc +@$(MAKE) $(AM_MAKEFLAGS) doc # include directory for aclocal