Skip to content

Commit

Permalink
no need to install manpages as executable
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Chris Wright authored and Junio C Hamano committed Dec 11, 2006
1 parent 4f88d3e commit d44c92d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Documentation/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)


#
Expand Down

0 comments on commit d44c92d

Please sign in to comment.