summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4f88d3e)
raw | patch | inline | side by side (parent: 4f88d3e)
author | Chris Wright <chrisw@sous-sol.org> | |
Mon, 11 Dec 2006 07:39:32 +0000 (23:39 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Mon, 11 Dec 2006 19:32:50 +0000 (11:32 -0800) |
No need to install manpages as executable. Noticed by Ville Skytt\e,Ad\e(B.
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/Makefile | patch | blob | history |
diff --git a/Documentation/Makefile b/Documentation/Makefile
index c00f5f62b741150e92f38e6394bfa6f111b82b6e..d68bc4a788743412719b3590487ec6dc7efee3e1 100644 (file)
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
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)
#