changeset 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 9a93ea72e175
children bc38021f1156
files Makefile src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
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
--- a/src/version.c
+++ b/src/version.c
@@ -800,6 +800,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    605,
+/**/
     604,
 /**/
     603,