Skip to content

Commit d44c92d

Browse files
chriswrightJunio C Hamano
authored andcommitted
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 <chrisw@sous-sol.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 4f88d3e commit d44c92d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Documentation/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ man7: $(DOC_MAN7)
5656

5757
install: man
5858
$(INSTALL) -d -m755 $(DESTDIR)$(man1dir) $(DESTDIR)$(man7dir)
59-
$(INSTALL) $(DOC_MAN1) $(DESTDIR)$(man1dir)
60-
$(INSTALL) $(DOC_MAN7) $(DESTDIR)$(man7dir)
59+
$(INSTALL) -m644 $(DOC_MAN1) $(DESTDIR)$(man1dir)
60+
$(INSTALL) -m644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
6161

6262

6363
#

0 commit comments

Comments
 (0)