diff Makefile @ 15190:fada746a971b v8.1.0605

patch 8.1.0605: running make in the top directory echoes a comment commit https://github.com/vim/vim/commit/6403bcdaf4dc36c0445a539a37510534ef87ca24 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 16 16:48:47 2018 +0100 patch 8.1.0605: running make in the top directory echoes a comment Problem: Running make in the top directory echoes a comment. Solution: Prefix with @. (closes https://github.com/vim/vim/issues/3698)
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Dec 2018 17:00:07 +0100
parents ea6f7b224be7
children cb1652e41314
line wrap: on
line diff
--- a/Makefile
+++ b/Makefile
@@ -39,7 +39,7 @@ all install uninstall tools config confi
 	@echo "Starting make in the src directory."
 	@echo "If there are problems, cd to the src directory and run make there"
 	cd src && $(MAKE) $@
-	# When the target is "test" also run the indent tests.
+	@# When the target is "test" also run the indent tests.
 	@if test "$@" = "test"; then \
 		$(MAKE) indenttest; \
 	fi