linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Documentation: installed man pages don't need to be executable
@ 2015-07-16 19:50 Jim Davis
  2015-07-17 15:31 ` Jonathan Corbet
  0 siblings, 1 reply; 2+ messages in thread
From: Jim Davis @ 2015-07-16 19:50 UTC (permalink / raw)
  To: corbet, linux-doc, linux-kernel; +Cc: Jim Davis

Install the man pages with mode 644 instead of 755

Signed-off-by: Jim Davis <jim.epost@gmail.com>
---
 Documentation/DocBook/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile
index b6a6a2e0dd3bb..170042a1ea5f2 100644
--- a/Documentation/DocBook/Makefile
+++ b/Documentation/DocBook/Makefile
@@ -60,7 +60,7 @@ mandocs: $(MAN)
 
 installmandocs: mandocs
 	mkdir -p /usr/local/man/man9/
-	install $(obj)/man/*.9.gz /usr/local/man/man9/
+	install -m 644 $(obj)/man/*.9.gz /usr/local/man/man9/
 
 ###
 #External programs used
-- 
2.4.5


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

* Re: [PATCH] Documentation: installed man pages don't need to be executable
  2015-07-16 19:50 [PATCH] Documentation: installed man pages don't need to be executable Jim Davis
@ 2015-07-17 15:31 ` Jonathan Corbet
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Corbet @ 2015-07-17 15:31 UTC (permalink / raw)
  To: Jim Davis; +Cc: linux-doc, linux-kernel

On Thu, 16 Jul 2015 12:50:50 -0700
Jim Davis <jim.epost@gmail.com> wrote:

> Install the man pages with mode 644 instead of 755

Makes sense.  Applied to the docs tree, thanks.

jon

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

end of thread, other threads:[~2015-07-17 15:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-16 19:50 [PATCH] Documentation: installed man pages don't need to be executable Jim Davis
2015-07-17 15:31 ` Jonathan Corbet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).