From: Chris Wright Date: Mon, 11 Dec 2006 07:39:32 +0000 (-0800) Subject: no need to install manpages as executable X-Git-Tag: v1.4.4.3~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d44c92d6ab4ded7a1960bb0b4a1da0c2fc102b89;p=git.git no need to install manpages as executable No need to install manpages as executable. Noticed by Ville Skytt,Ad(B. Signed-off-by: Chris Wright Signed-off-by: Junio C Hamano --- diff --git a/Documentation/Makefile b/Documentation/Makefile index c00f5f62b..d68bc4a78 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -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) #