summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-04-29 21:15:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-04-29 21:15:59 (GMT)
commit98eef4825770fa75f7397fcd10cdd5c8efaac210 (patch)
tree9c24dfb3cc76a77b32da005210e1c3deedbd5a6c /Makefile
parenta4708391d3bf4111ae5598f8e8e9ecdc25ead10a (diff)
parentd55de70a1edf885fd0c45c9e20a3a00c3f886607 (diff)
downloadgit-98eef4825770fa75f7397fcd10cdd5c8efaac210.zip
git-98eef4825770fa75f7397fcd10cdd5c8efaac210.tar.gz
git-98eef4825770fa75f7397fcd10cdd5c8efaac210.tar.bz2
Merge branch 'jc/makefile-redirection-stderr' into maint
A minor fix in the Makefile. * jc/makefile-redirection-stderr: Makefile: fix misdirected redirections
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2742a69..c7354bf 100644
--- a/Makefile
+++ b/Makefile
@@ -2263,10 +2263,10 @@ sparse: $(SP_OBJ)
check: common-cmds.h
@if sparse; \
then \
- echo 2>&1 "Use 'make sparse' instead"; \
+ echo >&2 "Use 'make sparse' instead"; \
$(MAKE) --no-print-directory sparse; \
else \
- echo 2>&1 "Did you mean 'make test'?"; \
+ echo >&2 "Did you mean 'make test'?"; \
exit 1; \
fi