summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2022-09-26 16:02:48 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-26 16:02:48 +0100
commit2cb4a89797477fc90c9d84b0d45e869369e39c75 (patch)
tree0754d4e56d9873736ac48fa7c130d4ad7b934824 /src/Makefile
parent311df6bb0f861154e6a27144c226c805c7554a94 (diff)
patch 9.0.0594: Makefile error message causes a shell errorv9.0.0594
Problem: Makefile error message causes a shell error. Solution: Put the message in single quotes. (closes #11232)
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 668a87f35a..14601a2473 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -3578,7 +3578,7 @@ objects/xpatience.o: xdiff/xpatience.c $(XDIFF_INCL)
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)!'
###############################################################################