From: Julien Grall Date: Tue, 30 Jun 2015 12:22:17 +0000 (+0100) Subject: docs: Fix docs output after commit 6592bf6 X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2980 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=044dfa8d7fcaa757a00add755ba195082f646a6a;p=xen.git docs: Fix docs output after commit 6592bf6 A find option was forgotten in commit 6592bf60beaf1fa0b4fd36fb73800eb001c739af "docs: Look for documentation in sub-directories" resulting to get some docs duplicated and other missing. Signed-off-by: Julien Grall Acked-by: Ian Jackson --- diff --git a/docs/Makefile b/docs/Makefile index 0ee6808ade..272292c923 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -10,9 +10,9 @@ DOC_ARCHES := arm x86_32 x86_64 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 $(shell find man 'xl*.pod.5' -print)) +MAN5SRC-y := $(sort $(shell find man -name 'xl*.pod.5' -print)) -MARKDOWNSRC-y := $(sort $(shell find misc '*.markdown' -print)) +MARKDOWNSRC-y := $(sort $(shell find misc -name '*.markdown' -print)) TXTSRC-y := $(sort $(shell find misc -name '*.txt' -print))