Skip to content

Commit fe4a9c3

Browse files
markdragogitster
authored andcommitted
Add semicolon to curly brace group in main Makefile
This semicolon is technically required by POSIX shell and indeed causes a syntax error with e.g. bash-2.04.0. Cf. http://www.opengroup.org/onlinepubs/000095399/utilities/xcu_chap02.html#tag_02_09_04_01 Signed-off-by: Mark Drago <markdrago@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 531e6da commit fe4a9c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1557,7 +1557,7 @@ endif
15571557
ln "$$execdir/git-add$X" "$$execdir/$$p" 2>/dev/null || \
15581558
ln -s "git-add$X" "$$execdir/$$p" 2>/dev/null || \
15591559
cp "$$execdir/git-add$X" "$$execdir/$$p" || exit; \
1560-
done } && \
1560+
done; } && \
15611561
./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X"
15621562

15631563
install-doc:

0 commit comments

Comments
 (0)