Mercurial > vim
changeset 5159:6b6e1786c7df v7.4a.006
updated for version 7.4a.006
Problem: Failure in po file check goes unnoticed.
Solution: Fail "make test" if the po file check fails.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 09 Jul 2013 14:58:10 +0200 |
parents | 5c419eae3fca |
children | fcab1df955e6 |
files | src/Makefile src/version.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 \