1From 1efb45330f5dbe475a092cda6982e6d7e135485a Mon Sep 17 00:00:00 2001 2From: Mingli Yu <mingli.yu@windriver.com> 3Date: Tue, 10 Aug 2021 13:02:18 +0000 4Subject: [PATCH] Makefile.in: make sure doc generated before install 5 6There is a race between the doc generation and the doc installation, 7so make the install depend on the build for doc to fix the error occurs 8sometimes as below: 9 | TOPDIR/tmp-glibc/hosttools/install: cannot stat 'doc/jemalloc.3': No such file or directory 10 | make: *** [Makefile:513: install_doc_man] Error 1 11 12Upstream-Status: Submitted [https://github.com/jemalloc/jemalloc/pull/2108] 13 14Signed-off-by: Mingli Yu <mingli.yu@windriver.com> 15--- 16 Makefile.in | 4 ++-- 17 1 file changed, 2 insertions(+), 2 deletions(-) 18 19diff --git a/Makefile.in b/Makefile.in 20index 7128b007..ab94f0c8 100644 21--- a/Makefile.in 22+++ b/Makefile.in 23@@ -501,14 +501,14 @@ install_lib: install_lib_static 24 endif 25 install_lib: install_lib_pc 26 27-install_doc_html: 28+install_doc_html: build_doc_html 29 $(INSTALL) -d $(DATADIR)/doc/jemalloc$(install_suffix) 30 @for d in $(DOCS_HTML); do \ 31 echo "$(INSTALL) -m 644 $$d $(DATADIR)/doc/jemalloc$(install_suffix)"; \ 32 $(INSTALL) -m 644 $$d $(DATADIR)/doc/jemalloc$(install_suffix); \ 33 done 34 35-install_doc_man: 36+install_doc_man: build_doc_man 37 $(INSTALL) -d $(MANDIR)/man3 38 @for d in $(DOCS_MAN3); do \ 39 echo "$(INSTALL) -m 644 $$d $(MANDIR)/man3"; \ 40-- 412.29.2 42 43