From: Anthony Liguori <aliguori@us.ibm.com>
To: qemu-devel@nongnu.org
Cc: Andre Przywara <andre.przywara@amd.com>
Subject: Re: [Qemu-devel] [PATCH] install man-pages as non-executables
Date: Thu, 22 Jan 2009 11:19:52 -0600 [thread overview]
Message-ID: <4978AAB8.6020604@us.ibm.com> (raw)
In-Reply-To: <1232397688131-git-send-email-andre.przywara@amd.com>
Andre Przywara wrote:
> make install-doc omits an explicit permission mask for the man-pages. This
> defaults to have the executable bits set. Adding "-m 644" (for rw-r--r--)
> fixes that.
>
> Signed-off-by: Andre Przywara <andre.przywara@amd.com>
>
Applied. Thanks.
Regards,
Anthony Liguori
> ---
> Makefile | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index 8cbdcda..fc7809d 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -233,9 +233,9 @@ install-doc: $(DOCS)
> $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
> ifndef CONFIG_WIN32
> mkdir -p "$(DESTDIR)$(mandir)/man1"
> - $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
> + $(INSTALL) -m 644 qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
> mkdir -p "$(DESTDIR)$(mandir)/man8"
> - $(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
> + $(INSTALL) -m 644 qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
> endif
>
> install: all $(if $(BUILD_DOCS),install-doc)
>
prev parent reply other threads:[~2009-01-22 17:20 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-19 20:41 [Qemu-devel] [PATCH] install man-pages as non-executables Andre Przywara
2009-01-22 17:19 ` Anthony Liguori [this message]
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=4978AAB8.6020604@us.ibm.com \
--to=aliguori@us.ibm.com \
--cc=andre.przywara@amd.com \
--cc=qemu-devel@nongnu.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.