changeset 30517:9e6796c75c07 v9.0.0594

patch 9.0.0594: Makefile error message causes a shell error Commit: https://github.com/vim/vim/commit/2cb4a89797477fc90c9d84b0d45e869369e39c75 Author: dundargoc <gocdundar@gmail.com> Date: Mon Sep 26 16:02:48 2022 +0100 patch 9.0.0594: Makefile error message causes a shell error Problem: Makefile error message causes a shell error. Solution: Put the message in single quotes. (closes https://github.com/vim/vim/issues/11232)
author Bram Moolenaar <Bram@vim.org>
date Mon, 26 Sep 2022 17:15:02 +0200
parents c3021faf02bf
children 45bc74aca376
files src/Makefile src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/Makefile
+++ b/src/Makefile
@@ -3578,7 +3578,7 @@ objects/xpatience.o: xdiff/xpatience.c $
 
 
 Makefile:
-	@echo The name of the makefile MUST be "Makefile" (with capital M)!!!!
+	@echo 'The name of the makefile MUST be "Makefile" (with capital M)!'
 
 
 ###############################################################################
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    594,
+/**/
     593,
 /**/
     592,