updated for version 7.4a.006
Problem: Failure in po file check goes unnoticed.
Solution: Fail "make test" if the po file check fails.
diff --git a/src/Makefile b/src/Makefile
index 1f3458d..d3836f5 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1850,7 +1850,7 @@
#
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 \