Skip to content

Commit 982aa4b

Browse files
committed
updated for version 7.4a.006
Problem: Failure in po file check goes unnoticed. Solution: Fail "make test" if the po file check fails.
1 parent 0842e28 commit 982aa4b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1850,7 +1850,7 @@ types.vim: $(TAGS_SRC) $(TAGS_INCL)
18501850
#
18511851
test check:
18521852
$(MAKE) -f Makefile $(VIMTARGET)
1853-
-if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \
1853+
if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \
18541854
cd $(PODIR); $(MAKE) -f Makefile check VIM=../$(VIMTARGET); \
18551855
fi
18561856
-if test $(VIMTARGET) != vim -a ! -r vim; then \

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,8 @@ static char *(features[]) =
728728

729729
static int included_patches[] =
730730
{ /* Add new patch number below this line */
731+
/**/
732+
6,
731733
/**/
732734
5,
733735
/**/

0 commit comments

Comments
 (0)