From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Julien Grall <julien.grall@citrix.com>, xen-devel@lists.xenproject.org
Cc: stefano.stabellini@citrix.com, ian.jackson@eu.citrix.com,
ian.campbell@citrix.com, wei.liu2@citrix.com
Subject: Re: [PATCH] docs: Fix docs output after commit 6592bf6
Date: Tue, 30 Jun 2015 13:35:14 +0100 [thread overview]
Message-ID: <55928D02.5060007@citrix.com> (raw)
In-Reply-To: <1435666937-31354-1-git-send-email-julien.grall@citrix.com>
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@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))
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))
>
next prev parent reply other threads:[~2015-06-30 12:35 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-30 12:22 [PATCH] docs: Fix docs output after commit 6592bf6 Julien Grall
2015-06-30 12:35 ` Andrew Cooper [this message]
2015-06-30 13:16 ` Julien Grall
2015-06-30 13:52 ` Ian Jackson
2015-06-30 14:01 ` Ian Campbell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55928D02.5060007@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=ian.campbell@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=julien.grall@citrix.com \
--cc=stefano.stabellini@citrix.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.