diff options
author | Jesper L. Nielsen <lyager@gmail.com> | 2013-02-04 22:06:06 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-05 15:23:41 -0800 |
commit | 8165be064e51112f74ea06e48c2e09e13097335a (patch) | |
tree | c2035182105d0ea240772a5a9061dd6addabc212 /contrib/subtree | |
parent | d86848228f46fad4c20bdf0bdcca124061dc56b2 (diff) | |
download | git-8165be064e51112f74ea06e48c2e09e13097335a.tar.gz git-8165be064e51112f74ea06e48c2e09e13097335a.tar.xz |
contrib/subtree: make the manual directory if needed
Before install git-subtree documentation, make sure the manpage
directory exists.
Signed-off-by: Jesper L. Nielsen <lyager@gmail.com>
Signed-off-by: David A. Greene <greened@obbligato.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/subtree')
-rw-r--r-- | contrib/subtree/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/subtree/Makefile b/contrib/subtree/Makefile index 36ae3e4f0..b50750565 100644 --- a/contrib/subtree/Makefile +++ b/contrib/subtree/Makefile @@ -35,6 +35,7 @@ install: $(GIT_SUBTREE) install-doc: install-man install-man: $(GIT_SUBTREE_DOC) + $(INSTALL) -d -m 755 $(DESTDIR)$(man1dir) $(INSTALL) -m 644 $^ $(DESTDIR)$(man1dir) $(GIT_SUBTREE_DOC): $(GIT_SUBTREE_XML) |