Mercurial > vim
changeset 15432:b10ce9e77128 v8.1.0724
patch 8.1.0724: build for MinGW fails
commit https://github.com/vim/vim/commit/46fd6bf2b6395f5850905525fa763803a14b093d
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jan 11 19:19:44 2019 +0100
patch 8.1.0724: build for MinGW fails
Problem: Build for MinGW fails.
Solution: Avoid specifying dependencies in included makefile.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 11 Jan 2019 19:30:06 +0100 |
parents | bab1e9e00aac |
children | 85ab9a288784 |
files | src/testdir/Make_all.mak src/testdir/Make_dos.mak src/testdir/Make_ming.mak src/testdir/Makefile src/version.c |
diffstat | 5 files changed, 11 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/Make_all.mak +++ b/src/testdir/Make_all.mak @@ -407,9 +407,3 @@ NEW_TESTS_RES = \ test_alot_latin.res \ test_alot_utf8.res \ test_alot.res - - -# Explicit dependencies. -test49.out: test49.vim - -test_options.res test_alot.res: opt_test.vim
--- a/src/testdir/Make_dos.mak +++ b/src/testdir/Make_dos.mak @@ -132,5 +132,7 @@ test_gui_init.res: test_gui_init.vim $(VIMPROG) -u gui_preinit.vim -U gui_init.vim $(NO_PLUGINS) -S runtest.vim $*.vim @del vimcmd +test_options.res test_alot.res: opt_test.vim + opt_test.vim: ../option.c gen_opt_test.vim $(VIMPROG) -u NONE -S gen_opt_test.vim --noplugin --not-a-term ../option.c
--- a/src/testdir/Make_ming.mak +++ b/src/testdir/Make_ming.mak @@ -127,5 +127,7 @@ test_gui_init.res: test_gui_init.vim $(VIMPROG) -u gui_preinit.vim -U gui_init.vim $(NO_PLUGINS) -S runtest.vim $< @$(DEL) vimcmd +test_options.res test_alot.res: opt_test.vim + opt_test.vim: ../option.c gen_opt_test.vim $(VIMPROG) -u NONE -S gen_opt_test.vim --noplugin --not-a-term ../option.c
--- a/src/testdir/Makefile +++ b/src/testdir/Makefile @@ -33,6 +33,11 @@ SCRIPTS = $(SCRIPTS_ALL) \ $(SCRIPTS_MORE2) \ $(SCRIPTS_MORE4) +# Explicit dependencies. +test49.out: test49.vim + +test_options.res test_alot.res: opt_test.vim + SCRIPTS_BENCH = bench_re_freeze.out .SUFFIXES: .in .out .res .vim