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>
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))