mirror of
https://github.com/git/git.git
synced 2024-11-24 18:33:43 +08:00
contrib/subtree/Makefile: s/libexecdir/gitexecdir/
$(libexecdir) isn't used anywhere else in the project, while $(gitexecdir) is the standard in the other appropriate makefiles. Hence, replace the former with the latter. Reviewed-by: Jeff King <peff@peff.net> Signed-off-by: James Denholm <nod.helm@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
8e2a5ccad1
commit
2c45009b73
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
prefix ?= /usr/local
|
prefix ?= /usr/local
|
||||||
mandir ?= $(prefix)/share/man
|
mandir ?= $(prefix)/share/man
|
||||||
libexecdir ?= $(prefix)/libexec/git-core
|
gitexecdir ?= $(prefix)/libexec/git-core
|
||||||
man1dir ?= $(mandir)/man1
|
man1dir ?= $(mandir)/man1
|
||||||
|
|
||||||
../../GIT-VERSION-FILE: FORCE
|
../../GIT-VERSION-FILE: FORCE
|
||||||
@ -33,8 +33,8 @@ $(GIT_SUBTREE): $(GIT_SUBTREE_SH)
|
|||||||
doc: $(GIT_SUBTREE_DOC) $(GIT_SUBTREE_HTML)
|
doc: $(GIT_SUBTREE_DOC) $(GIT_SUBTREE_HTML)
|
||||||
|
|
||||||
install: $(GIT_SUBTREE)
|
install: $(GIT_SUBTREE)
|
||||||
$(INSTALL) -d -m 755 $(DESTDIR)$(libexecdir)
|
$(INSTALL) -d -m 755 $(DESTDIR)$(gitexecdir)
|
||||||
$(INSTALL) -m 755 $(GIT_SUBTREE) $(DESTDIR)$(libexecdir)
|
$(INSTALL) -m 755 $(GIT_SUBTREE) $(DESTDIR)$(gitexecdir)
|
||||||
|
|
||||||
install-doc: install-man
|
install-doc: install-man
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user