# HG changeset patch # User Christian Brabandt # Date 1468694710 -7200 # Node ID 271f3ae34835f9ac63e5cd20bce0fc6883b08113 # Parent 33d883608abb5e879a2003cca0f23e5d202707ee commit https://github.com/vim/vim/commit/e21d62435ef966b8adb40dee13ef9d6791316674 Author: Bram Moolenaar Date: Sat Jul 16 20:43:14 2016 +0200 patch 7.4.2053 Problem: Can't run scripttests in the top directory. Solution: Add targets to the top Makefile. diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ first: # Some make programs use the last target for the $@ default; put the other # targets separately to always let $@ expand to "first" by default. -all install uninstall tools config configure reconfig proto depend lint tags types test testclean clean distclean: +all install uninstall tools config configure reconfig proto depend lint tags types test scripttests unittests testclean clean distclean: @if test ! -f src/auto/config.mk; then \ cp src/config.mk.dist src/auto/config.mk; \ fi diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -759,6 +759,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2053, +/**/ 2052, /**/ 2051,