docs: Fix docs output after commit 6592bf6
authorJulien Grall <julien.grall@citrix.com>
Tue, 30 Jun 2015 12:22:17 +0000 (13:22 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Tue, 30 Jun 2015 13:51:59 +0000 (14:51 +0100)
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 <julien.grall@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
docs/Makefile

index 0ee6808ade6f07d5960544a0786480c94052c22f..272292c923a4cb29b37b3ed133d0bb44b8706bdd 100644 (file)
@@ -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))