Skip to content

Commit

Permalink
Add semicolon to curly brace group in main Makefile
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Mark Drago authored and Junio C Hamano committed Apr 27, 2009
1 parent 531e6da commit fe4a9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1557,7 +1557,7 @@ endif
ln "$$execdir/git-add$X" "$$execdir/$$p" 2>/dev/null || \
ln -s "git-add$X" "$$execdir/$$p" 2>/dev/null || \
cp "$$execdir/git-add$X" "$$execdir/$$p" || exit; \
done } && \
done; } && \
./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X"

install-doc:
Expand Down

0 comments on commit fe4a9c3

Please sign in to comment.