summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2023-06-13 22:44:57 +0100
committerBram Moolenaar <Bram@vim.org>2023-06-13 22:44:57 +0100
commitd5b952a871835b057176fd37fc91b971e8e3f300 (patch)
treeb56cae219d04f542641473e1e073574551addc3d /Makefile
parent46acad7284cba7842b5e505fa3d07e99806d246f (diff)
patch 9.0.1628: syntax tests fail on FreeBSDv9.0.1628
Problem: Syntax tests fail on FreeBSD. Solution: Pass the Vim executable path with VIMPROG. (Ken Takata, closes #12535) Adjust the paths.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6e68093bbd..f70fb85293 100644
--- a/Makefile
+++ b/Makefile
@@ -66,7 +66,7 @@ VIM_FOR_SYNTAXTEST = ../../src/vim
syntaxtest:
cd runtime/syntax && \
$(MAKE) clean && \
- $(MAKE) test VIM="$(VIM_FOR_SYNTAXTEST)"
+ $(MAKE) test VIMPROG="$(VIM_FOR_SYNTAXTEST)"
#########################################################################