Skip to content

Commit 82e3808

Browse files
committed
updated for version 7.4a.012
Problem: "make test" fails when using a shadow directory. Solution: Create links for files in src/po. (James McCoy)
1 parent b081abb commit 82e3808

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2344,9 +2344,11 @@ SHADOWDIR = shadow
23442344

23452345
shadow: runtime pixmaps
23462346
mkdir $(SHADOWDIR)
2347-
cd $(SHADOWDIR); ln -s ../*.[ch] ../*.in ../*.sh ../*.xs ../*.xbm ../toolcheck ../proto ../po ../vimtutor ../gvimtutor ../mkinstalldirs .
2347+
cd $(SHADOWDIR); ln -s ../*.[ch] ../*.in ../*.sh ../*.xs ../*.xbm ../toolcheck ../proto ../vimtutor ../gvimtutor ../mkinstalldirs .
23482348
mkdir $(SHADOWDIR)/auto
23492349
cd $(SHADOWDIR)/auto; ln -s ../../auto/configure .
2350+
mkdir $(SHADOWDIR)/po
2351+
cd $(SHADOWDIR)/po; ln -s ../../po/*.po ../../po/*.mak ../../po/*.vim ../../po/Makefile .
23502352
cd $(SHADOWDIR); rm -f auto/link.sed
23512353
cp Makefile configure $(SHADOWDIR)
23522354
rm -f $(SHADOWDIR)/auto/config.mk $(SHADOWDIR)/config.mk.dist

src/version.c

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

728728
static int included_patches[] =
729729
{ /* Add new patch number below this line */
730+
/**/
731+
12,
730732
/**/
731733
11,
732734
/**/

0 commit comments

Comments
 (0)