From f7dc2b551708315a833fcb19c288759c277dcfe1 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 12 Mar 2014 15:50:22 +0100 Subject: [PATCH] updated for version 7.4.196 Problem: Tests fail on Solaris 9 and 10. Solution: Use "test -f" instead of "test -e". (Laurent Blume) --- src/testdir/Makefile | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/testdir/Makefile b/src/testdir/Makefile index d86a7b06e1..290200f9a6 100644 --- a/src/testdir/Makefile +++ b/src/testdir/Makefile @@ -61,7 +61,7 @@ clean: test1.out: test1.in -rm -rf $*.failed $(RM_ON_RUN) $(RM_ON_START) wrongtermsize $(RUN_VIM) $*.in - @/bin/sh -c "if test -e wrongtermsize; \ + @/bin/sh -c "if test -f wrongtermsize; \ then echo; \ echo test1 FAILED - terminal size must be 80x24 or larger; \ echo; exit 1; \ diff --git a/src/version.c b/src/version.c index 035b124b4c..91e0d50fae 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 196, /**/ 195, /**/ -- 2.47.2