diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-03-02 15:07:17 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-03-02 15:07:17 -0800 |
commit | 29b09c518c93e916bc91758d4cebe86b56f43040 (patch) | |
tree | 8c5da1d4c51c7bb08573c917317b4a09a2ce8a9a /Documentation | |
parent | The seventh batch for 2.26 (diff) | |
parent | doc-diff: use single-colon rule in rendering Makefile (diff) | |
download | tgif-29b09c518c93e916bc91758d4cebe86b56f43040.tar.xz |
Merge branch 'jk/doc-diff-parallel'
Update to doc-diff.
* jk/doc-diff-parallel:
doc-diff: use single-colon rule in rendering Makefile
Diffstat (limited to 'Documentation')
-rwxr-xr-x | Documentation/doc-diff | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/doc-diff b/Documentation/doc-diff index 88a9b20168..1694300e50 100755 --- a/Documentation/doc-diff +++ b/Documentation/doc-diff @@ -127,7 +127,7 @@ generate_render_makefile () { while read src do dst=$2/${src#$1/} - printf 'all:: %s\n' "$dst" + printf 'all: %s\n' "$dst" printf '%s: %s\n' "$dst" "$src" printf '\t@echo >&2 " RENDER $(notdir $@)" && \\\n' printf '\tmkdir -p $(dir $@) && \\\n' |