[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] docs: Look for documentation in sub-directories
commit 6592bf60beaf1fa0b4fd36fb73800eb001c739af Author: Julien Grall <julien.grall@xxxxxxxxxx> AuthorDate: Sat Jun 20 12:37:13 2015 +0100 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Thu Jun 25 11:00:26 2015 +0100 docs: Look for documentation in sub-directories The ARM documentation is living in a specific folder under misc. Until now, it was skipped during building. In order to avoid missing future directory, use find to look for a specific file pattern through all the directory. Note the we already use find in other Makefile. Signed-off-by: Julien Grall <julien.grall@xxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- docs/Makefile | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index 60bc541..0ee6808 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -7,16 +7,16 @@ VERSION := $(shell $(MAKE) -C $(XEN_ROOT)/xen --no-print-directory xenversion) DOC_ARCHES := arm x86_32 x86_64 # Documentation sources to build -MAN1SRC-y := $(sort $(wildcard man/xl*.pod.1)) -MAN1SRC-y += $(sort $(wildcard man/xenstore*.pod.1)) +MAN1SRC-y += $(sort $(shell find man -name 'xl*.pod.1' -print)) +MAN1SRC-y += $(sort $(shell find man -name 'xenstore*.pod.1' -print)) -MAN5SRC-y := $(sort $(wildcard man/xl*.pod.5)) +MAN5SRC-y := $(sort $(shell find man 'xl*.pod.5' -print)) -MARKDOWNSRC-y := $(sort $(wildcard misc/*.markdown)) +MARKDOWNSRC-y := $(sort $(shell find misc '*.markdown' -print)) -TXTSRC-y := $(sort $(wildcard misc/*.txt)) +TXTSRC-y := $(sort $(shell find misc -name '*.txt' -print)) -PANDOCSRC-y := $(sort $(wildcard specs/*.pandoc)) +PANDOCSRC-y := $(sort $(shell find specs -name '*.pandoc' -print)) # Documentation targets DOC_MAN1 := $(patsubst man/%.pod.1,man1/%.1,$(MAN1SRC-y)) -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |