[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1437076250-19732-1-git-send-email-jim.epost@gmail.com>
Date: Thu, 16 Jul 2015 12:50:50 -0700
From: Jim Davis <jim.epost@...il.com>
To: corbet@....net, linux-doc@...r.kernel.org,
linux-kernel@...r.kernel.org
Cc: Jim Davis <jim.epost@...il.com>
Subject: [PATCH] Documentation: installed man pages don't need to be executable
Install the man pages with mode 644 instead of 755
Signed-off-by: Jim Davis <jim.epost@...il.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
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists