From fdf55e35824d7287ebb726ade8a375dc309b08b5 Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Wed, 9 Sep 2020 11:55:16 +0200 Subject: [PATCH] Build '$(MANPAGES_IN)' before 'ootsetup' 'ootsetup' target requires '$(MANPAGES_IN)', otherwise it fails after 'maintainer-clean' target. --- doc/man/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/man/Makefile.in b/doc/man/Makefile.in index a0fd96815c..ebe21f1998 100644 --- a/doc/man/Makefile.in +++ b/doc/man/Makefile.in @@ -185,7 +185,7 @@ html dirhtml: # copy in out-of-tree files in case sphinx-build isn't available .NOTPARALLEL: -ootsetup: +ootsetup: $(MANPAGES_IN) for man in $(MANPAGES_IN); do \ [ -e "$$man" ] || cp -f ${srcdir}/"$$man" .; \ done