Skip to content

Commit 2c45009

Browse files
ChemicalRascalgitster
authored andcommitted
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 <[email protected]> Signed-off-by: James Denholm <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 8e2a5cc commit 2c45009

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contrib/subtree/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
prefix ?= /usr/local
55
mandir ?= $(prefix)/share/man
6-
libexecdir ?= $(prefix)/libexec/git-core
6+
gitexecdir ?= $(prefix)/libexec/git-core
77
man1dir ?= $(mandir)/man1
88

99
../../GIT-VERSION-FILE: FORCE
@@ -33,8 +33,8 @@ $(GIT_SUBTREE): $(GIT_SUBTREE_SH)
3333
doc: $(GIT_SUBTREE_DOC) $(GIT_SUBTREE_HTML)
3434

3535
install: $(GIT_SUBTREE)
36-
$(INSTALL) -d -m 755 $(DESTDIR)$(libexecdir)
37-
$(INSTALL) -m 755 $(GIT_SUBTREE) $(DESTDIR)$(libexecdir)
36+
$(INSTALL) -d -m 755 $(DESTDIR)$(gitexecdir)
37+
$(INSTALL) -m 755 $(GIT_SUBTREE) $(DESTDIR)$(gitexecdir)
3838

3939
install-doc: install-man
4040

0 commit comments

Comments
 (0)