From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LP0wP-0001Er-UE for qemu-devel@nongnu.org; Mon, 19 Jan 2009 15:41:49 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LP0wN-0001DP-P5 for qemu-devel@nongnu.org; Mon, 19 Jan 2009 15:41:49 -0500 Received: from [199.232.76.173] (port=46598 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LP0wN-0001DD-J5 for qemu-devel@nongnu.org; Mon, 19 Jan 2009 15:41:47 -0500 Received: from tx2ehsobe001.messaging.microsoft.com ([65.55.88.11]:4919 helo=TX2EHSOBE002.bigfish.com) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_ARCFOUR_MD5:16) (Exim 4.60) (envelope-from ) id 1LP0wN-0006Mu-9R for qemu-devel@nongnu.org; Mon, 19 Jan 2009 15:41:47 -0500 Received: from mail180-tx2 (localhost.localdomain [127.0.0.1]) by mail180-tx2-R.bigfish.com (Postfix) with ESMTP id 0F8071A98498 for ; Mon, 19 Jan 2009 20:41:42 +0000 (UTC) Received: from ausb3extmailp01.amd.com (unknown [163.181.251.8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail180-tx2.bigfish.com (Postfix) with ESMTP id 3ED0A6F804D for ; Mon, 19 Jan 2009 20:41:38 +0000 (UTC) Received: from ausb3twp01.amd.com ([163.181.250.37]) by ausb3extmailp01.amd.com (Switch-3.2.7/Switch-3.2.7) with ESMTP id n0JKfUFh028426 for ; Mon, 19 Jan 2009 14:41:33 -0600 Received: from sausexbh2.amd.com (SAUSEXBH2.amd.com [163.181.22.102]) by ausb3twp01.amd.com (Tumbleweed MailGate 3.5.1) with ESMTP id 29E421944C2 for ; Mon, 19 Jan 2009 14:41:23 -0600 (CST) From: Andre Przywara Date: Mon, 19 Jan 2009 21:41:28 +0100 Message-ID: <1232397688131-git-send-email-andre.przywara@amd.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH] install man-pages as non-executables Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Andre Przywara 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 --- 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) -- 1.5.2.2