Skip to content

Commit 98eef48

Browse files
committed
Merge branch 'jc/makefile-redirection-stderr' into maint
A minor fix in the Makefile. * jc/makefile-redirection-stderr: Makefile: fix misdirected redirections
2 parents a470839 + d55de70 commit 98eef48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2263,10 +2263,10 @@ sparse: $(SP_OBJ)
22632263
check: common-cmds.h
22642264
@if sparse; \
22652265
then \
2266-
echo 2>&1 "Use 'make sparse' instead"; \
2266+
echo >&2 "Use 'make sparse' instead"; \
22672267
$(MAKE) --no-print-directory sparse; \
22682268
else \
2269-
echo 2>&1 "Did you mean 'make test'?"; \
2269+
echo >&2 "Did you mean 'make test'?"; \
22702270
exit 1; \
22712271
fi
22722272

0 commit comments

Comments
 (0)