diff src/Makefile @ 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 d751e924cc29
children 101f08b49ed3
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)!'
 
 
 ###############################################################################