OSDN Git Service

no need to install manpages as executable
authorChris Wright <chrisw@sous-sol.org>
Mon, 11 Dec 2006 07:39:32 +0000 (23:39 -0800)
committerJunio C Hamano <junkio@cox.net>
Mon, 11 Dec 2006 19:32:50 +0000 (11:32 -0800)
No need to install manpages as executable.  Noticed by Ville Skytt\e,Ad\e(B.

Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/Makefile

index c00f5f6..d68bc4a 100644 (file)
@@ -56,8 +56,8 @@ man7: $(DOC_MAN7)
 
 install: man
        $(INSTALL) -d -m755 $(DESTDIR)$(man1dir) $(DESTDIR)$(man7dir)
-       $(INSTALL) $(DOC_MAN1) $(DESTDIR)$(man1dir)
-       $(INSTALL) $(DOC_MAN7) $(DESTDIR)$(man7dir)
+       $(INSTALL) -m644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
+       $(INSTALL) -m644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
 
 
 #