Skip to content

Commit a8ab762

Browse files
committed
Rollup merge of rust-lang#33786 - birkenfeld:make-fix, r=jseyfried
Makefile.in: dont use unnecessary escapes in echo I don't know if `echo` allows escapes without `-e` on other systems, but on a GNU userland this outputs literal `\n` on the terminal. In this case there's an easy way to write this without escapes anyway. r? @GuillaumeGomez
2 parents 1c975ea + d5c7ddc commit a8ab762

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile.in

+4-2
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,9 @@ ifneq ($(strip $(findstring TAGS.emacs,$(MAKECMDGOALS)) \
272272
endif
273273

274274
.DEFAULT:
275-
@echo "\n======================================================"
275+
@echo
276+
@echo "======================================================"
276277
@echo "== If you need help, run 'make help' or 'make tips' =="
277-
@echo "======================================================\n"
278+
@echo "======================================================"
279+
@echo
278280
exit 1

0 commit comments

Comments
 (0)