summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-07-09 14:58:10 +0200
committerBram Moolenaar <Bram@vim.org>2013-07-09 14:58:10 +0200
commit4ca8d5fefd047aad898c7a09c619cd69314741f5 (patch)
treea60320e0021d21a70d671f6851d6fbb8bd3af2f9 /src/Makefile
parent04c5c9ee27e1d6c27085e4e9fefa545f26388a56 (diff)
downloadvim-git-4ca8d5fefd047aad898c7a09c619cd69314741f5.tar.gz
updated for version 7.4a.006v7.4a.006
Problem: Failure in po file check goes unnoticed. Solution: Fail "make test" if the po file check fails.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
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 \