[PATCH] docs: do not install .deps files

Marek Marczykowski-Górecki posted 1 patch 1 year, 5 months ago
Test gitlab-ci failed
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/20221210204258.3153703-1-marmarek@invisiblethingslab.com
docs/Makefile | 1 +
1 file changed, 1 insertion(+)
[PATCH] docs: do not install .deps files
Posted by Marek Marczykowski-Górecki 1 year, 5 months ago
It isn't really part of the documentation. Furthermore, entries there
are in not determined order, which breaks build reproducibility.

Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
---
 docs/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/Makefile b/docs/Makefile
index 8de1efb6f5bc..966a104490ac 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -178,6 +178,7 @@ $(foreach i,$(MAN_SECTIONS),$(eval $(call GENERATE_MANPAGE_RULES,$(i))))
 install-html: html txt figs
 	$(INSTALL_DIR) $(DESTDIR)$(docdir)
 	[ ! -d html ] || cp -R html $(DESTDIR)$(docdir)
+	rm -f $(DESTDIR)$(docdir)/html/hypercall/*/.deps
 
 .PHONY: install
 install: install-man-pages install-html
-- 
2.37.3


Re: [PATCH] docs: do not install .deps files
Posted by Andrew Cooper 1 year, 5 months ago
On 10/12/2022 20:42, Marek Marczykowski-Górecki wrote:
> It isn't really part of the documentation. Furthermore, entries there
> are in not determined order, which breaks build reproducibility.
>
> Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>

Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>