about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-05-22 08:28:42 +0200
committerGeorg Brandl <georg@python.org>2016-05-22 08:28:42 +0200
commitd5c7ddc38f1e21ae77800a87e84a428dbb3f02a4 (patch)
tree4961c5213820c4c61b86491af668cfcfa6a72089
parent476fe6eefe17db91ff7a60aab34aa67a0a750a18 (diff)
downloadrust-d5c7ddc38f1e21ae77800a87e84a428dbb3f02a4.tar.gz
rust-d5c7ddc38f1e21ae77800a87e84a428dbb3f02a4.zip
Makefile.in: dont use unnecessary escapes in echo
-rw-r--r--Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 7425e9bd73e..9d8fdd0de62 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -272,7 +272,9 @@ ifneq ($(strip $(findstring TAGS.emacs,$(MAKECMDGOALS)) \
 endif
 
 .DEFAULT:
-	@echo "\n======================================================"
+	@echo
+	@echo "======================================================"
 	@echo "== If you need help, run 'make help' or 'make tips' =="
-	@echo "======================================================\n"
+	@echo "======================================================"
+	@echo
 	exit 1