diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-26 00:51:01 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-26 00:51:01 -0700 |
commit | 3208ec9abd8e78970aa15ed0396a557140587058 (patch) | |
tree | 7636f81cc0fd99b59a91ff699e6c48757b14f7f2 /Documentation | |
parent | Merge branch 'sp/reflog' into next (diff) | |
parent | t6000lib: workaround a possible dash bug (diff) | |
download | tgif-3208ec9abd8e78970aa15ed0396a557140587058.tar.xz |
Merge branch 'ew/tests' into next
* ew/tests:
t6000lib: workaround a possible dash bug
t5500-fetch-pack: remove local (bashism) usage.
tests: Remove heredoc usage inside quotes
t3300-funny-names: shell portability fixes
git-format-patch --start-number <n>
Don't write directly to a make target ($@).
bogus "fatal: Not a git repository"
Documentation/Makefile: remove extra /
cvsimport: avoid "use" with :tag
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 2a08f592d9..2b0efe7921 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -52,9 +52,9 @@ man1: $(DOC_MAN1) man7: $(DOC_MAN7) install: man - $(INSTALL) -d -m755 $(DESTDIR)/$(man1) $(DESTDIR)/$(man7) - $(INSTALL) $(DOC_MAN1) $(DESTDIR)/$(man1) - $(INSTALL) $(DOC_MAN7) $(DESTDIR)/$(man7) + $(INSTALL) -d -m755 $(DESTDIR)$(man1) $(DESTDIR)$(man7) + $(INSTALL) $(DOC_MAN1) $(DESTDIR)$(man1) + $(INSTALL) $(DOC_MAN7) $(DESTDIR)$(man7) # |