aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPeter Eriksen <s022018@student.dtu.dk>2005-09-14 12:41:52 +0200
committerJunio C Hamano <junkio@cox.net>2005-09-15 12:46:31 -0700
commit53764ee43defda7109fe547f471eac54c4e8b3d6 (patch)
tree9e20da85c03e7d6f779aaaf5a6ca509f5ddff8f4 /Makefile
parent1db69b571c9eaab73a7b21303bfedda5fb5f31ce (diff)
downloadgit-53764ee43defda7109fe547f471eac54c4e8b3d6.tar.gz
[PATCH] Use '-d' as the first flag to 'install'
... in order to please Solaris 'install'. GNU install is not harmed with this. [jc: Documentation/Makefile also fixed.] Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a851f56466..88189fb120 100644
--- a/Makefile
+++ b/Makefile
@@ -288,12 +288,12 @@ check:
### Installation rules
install: $(PROGRAMS) $(SCRIPTS)
- $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
+ $(INSTALL) -d -m755 $(DESTDIR)$(bindir)
$(INSTALL) $(PROGRAMS) $(SCRIPTS) $(DESTDIR)$(bindir)
$(INSTALL) git-revert $(DESTDIR)$(bindir)/git-cherry-pick
sh ./cmd-rename.sh $(DESTDIR)$(bindir)
$(MAKE) -C templates install
- $(INSTALL) -m755 -d $(DESTDIR)$(GIT_PYTHON_DIR)
+ $(INSTALL) -d -m755 $(DESTDIR)$(GIT_PYTHON_DIR)
$(INSTALL) $(PYMODULES) $(DESTDIR)$(GIT_PYTHON_DIR)
install-doc: