Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Revert "subtree: make install targets depend on build targets"
author
Junio C Hamano
<gitster@pobox.com>
Thu, 18 Oct 2018 02:07:17 +0000
(11:07 +0900)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 18 Oct 2018 02:07:17 +0000
(11:07 +0900)
This reverts commit
744f7c4c314dc0e7816ac05520e8358c8318187a
.
These targets do depend on the fact that each prereq is explicitly
listed via their use of $^, which I failed to notice, and broke the
build.
contrib/subtree/Makefile
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
744f7c4
)
diff --git
a/contrib/subtree/Makefile
b/contrib/subtree/Makefile
index 4a10a020a06b940489530986cfad87c742a4521b..6906aae44147810ec2cf7560eb2cae3ef56bb454 100644
(file)
--- a/
contrib/subtree/Makefile
+++ b/
contrib/subtree/Makefile
@@
-69,11
+69,11
@@
install: $(GIT_SUBTREE)
install-doc: install-man install-html
-install-man:
man
+install-man:
$(GIT_SUBTREE_DOC)
$(INSTALL) -d -m 755 $(DESTDIR)$(man1dir)
$(INSTALL) -m 644 $^ $(DESTDIR)$(man1dir)
-install-html:
html
+install-html:
$(GIT_SUBTREE_HTML)
$(INSTALL) -d -m 755 $(DESTDIR)$(htmldir)
$(INSTALL) -m 644 $^ $(DESTDIR)$(htmldir)
@@
-98,4
+98,4
@@
clean:
$(RM) $(GIT_SUBTREE)
$(RM) *.xml *.html *.1
-.PHONY: FORCE
man html install-man install-html
+.PHONY: FORCE