All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] docs: Fix docs output after commit 6592bf6
@ 2015-06-30 12:22 Julien Grall
  2015-06-30 12:35 ` Andrew Cooper
  0 siblings, 1 reply; 5+ messages in thread
From: Julien Grall @ 2015-06-30 12:22 UTC (permalink / raw)
  To: xen-devel
  Cc: Julien Grall, ian.jackson, stefano.stabellini, ian.campbell,
	wei.liu2

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>
---
 docs/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/Makefile b/docs/Makefile
index 0ee6808..272292c 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))
 
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-06-30 14:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-30 12:22 [PATCH] docs: Fix docs output after commit 6592bf6 Julien Grall
2015-06-30 12:35 ` Andrew Cooper
2015-06-30 13:16   ` Julien Grall
2015-06-30 13:52     ` Ian Jackson
2015-06-30 14:01       ` Ian Campbell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.