From 4ca8d5fefd047aad898c7a09c619cd69314741f5 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 9 Jul 2013 14:58:10 +0200 Subject: [PATCH] updated for version 7.4a.006 Problem: Failure in po file check goes unnoticed. Solution: Fail "make test" if the po file check fails. --- src/Makefile | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 1f3458d78..d3836f595 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1850,7 +1850,7 @@ types.vim: $(TAGS_SRC) $(TAGS_INCL) # test check: $(MAKE) -f Makefile $(VIMTARGET) - -if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \ + if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \ cd $(PODIR); $(MAKE) -f Makefile check VIM=../$(VIMTARGET); \ fi -if test $(VIMTARGET) != vim -a ! -r vim; then \ diff --git a/src/version.c b/src/version.c index 25534c57c..c26845e92 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 6, /**/ 5, /**/ -- 2.50.1