[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 1/2] 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> --- I found some solution based on wildcard (**/*.cfg) but it seems that it's no compatible with every version of gmake. This patch is candidate for a backport to Xen 4.5 and Xen 4.4 (first official ARM release) where the ARM documentations is not exported for now. --- docs/Makefile | 12 ++++++------ 1 file 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)) -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |