# HG changeset patch # User Bram Moolenaar # Date 1664205302 -7200 # Node ID 9e6796c75c07cb306645cca7725f81507701a3e3 # Parent c3021faf02bfa07e98a3f407823a1464882641fc patch 9.0.0594: Makefile error message causes a shell error Commit: https://github.com/vim/vim/commit/2cb4a89797477fc90c9d84b0d45e869369e39c75 Author: dundargoc 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) diff --git a/src/Makefile b/src/Makefile --- 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)!' ############################################################################### diff --git a/src/version.c b/src/version.c --- 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,