summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-04-13 14:12:37 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-04-13 14:12:38 -0700
commit8c9dec985eb5429a1116230bac5c3200b5c4d324 (patch)
treeefb24e363d51961cf0adc956681deb4fe0f5740a
parentMerge branch 'lt/pretty-expand-tabs' (diff)
parentMakefile: fix misdirected redirections (diff)
downloadtgif-8c9dec985eb5429a1116230bac5c3200b5c4d324.tar.xz
Merge branch 'jc/makefile-redirection-stderr'
A minor fix in the Makefile. * jc/makefile-redirection-stderr: Makefile: fix misdirected redirections
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2742a6977c..c7354bf2ad 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