aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wright <chrisw@sous-sol.org>2006-12-10 23:39:32 -0800
committerJunio C Hamano <junkio@cox.net>2006-12-11 11:32:50 -0800
commitd44c92d6ab4ded7a1960bb0b4a1da0c2fc102b89 (patch)
tree2cc1f91ce0dcdf8780a4b695cfaf9a0cd03f698f
parent4f88d3e0cbf443cd309c2c881209f3366f14023d (diff)
downloadgit-d44c92d6ab4ded7a1960bb0b4a1da0c2fc102b89.tar.gz
git-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>
-rw-r--r--Documentation/Makefile4
1 files changed, 2 insertions, 2 deletions
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)
#