From d5c7ddc38f1e21ae77800a87e84a428dbb3f02a4 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 22 May 2016 08:28:42 +0200 Subject: [PATCH] Makefile.in: dont use unnecessary escapes in echo --- Makefile.in | 6 ++++-- 1 file 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