diff options
| author | Georg Brandl <georg@python.org> | 2016-05-22 08:28:42 +0200 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2016-05-22 08:28:42 +0200 |
| commit | d5c7ddc38f1e21ae77800a87e84a428dbb3f02a4 (patch) | |
| tree | 4961c5213820c4c61b86491af668cfcfa6a72089 | |
| parent | 476fe6eefe17db91ff7a60aab34aa67a0a750a18 (diff) | |
| download | rust-d5c7ddc38f1e21ae77800a87e84a428dbb3f02a4.tar.gz rust-d5c7ddc38f1e21ae77800a87e84a428dbb3f02a4.zip | |
Makefile.in: dont use unnecessary escapes in echo
| -rw-r--r-- | Makefile.in | 6 |
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 |
