diff options
author | Jesper L. Nielsen <lyager@gmail.com> | 2013-02-05 05:06:06 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-06 00:23:41 +0100 |
commit | 8165be064e51112f74ea06e48c2e09e13097335a (patch) | |
tree | c2035182105d0ea240772a5a9061dd6addabc212 /contrib/subtree/Makefile | |
parent | contrib/subtree: honor DESTDIR (diff) | |
download | git-8165be064e51112f74ea06e48c2e09e13097335a.tar.xz git-8165be064e51112f74ea06e48c2e09e13097335a.zip |
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/Makefile')
-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 36ae3e4f0a..b50750565f 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) |