diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-03-17 15:02:22 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-03-17 15:02:22 -0700 |
commit | 56f97d5896a964e88d46b227302e682a75837314 (patch) | |
tree | f7beb98fc5439a4958324d95ac86cad2fca74419 /Documentation | |
parent | 1a4abcbb3b7950d6367be5e142503173088a078c (diff) | |
parent | 2607d39da347e207ecb972300cdb8b82f6772d3b (diff) | |
download | git-56f97d5896a964e88d46b227302e682a75837314.tar.gz |
Merge branch 'jk/doc-diff-parallel' into maint
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' |