[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] docs: Fix docs output after commit 6592bf6
On 30/06/15 13:22, Julien Grall wrote: > 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@xxxxxxxxxx> > --- > 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)) All of the sources should look for *.pod.1 and *.pod.5, without being more specific about an xl or a xenstore prefix. They were only like that because of limitations with the older $(wildcard ...) invocation. ~Andrew > > -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)) > _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |