diff options
author | Chris Wright <chrisw@sous-sol.org> | 2006-12-10 23:39:32 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-11 11:32:50 -0800 |
commit | d44c92d6ab4ded7a1960bb0b4a1da0c2fc102b89 (patch) | |
tree | 2cc1f91ce0dcdf8780a4b695cfaf9a0cd03f698f /Documentation/Makefile | |
parent | cvsserver: Avoid miscounting bytes in Perl v5.8.x (diff) | |
download | tgif-d44c92d6ab4ded7a1960bb0b4a1da0c2fc102b89.tar.xz |
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>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index c00f5f62b7..d68bc4a788 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) # |