Skip to content

Commit 12d1dc9

Browse files
committed
patch 8.0.0432: "make shadow" creates an invalid link
Problem: "make shadow" creates an invalid link. Solution: Don't link "*.vim". (Kazunobu Kuriyama)
1 parent 7720ba8 commit 12d1dc9

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
@@ -2770,7 +2770,7 @@ SHADOWDIR = shadow
27702770

27712771
shadow: runtime pixmaps
27722772
mkdir $(SHADOWDIR)
2773-
cd $(SHADOWDIR); ln -s ../*.[chm] ../*.in ../*.vim ../*.sh ../*.xs ../*.xbm ../gui_gtk_res.xml ../toolcheck ../proto ../vimtutor ../gvimtutor ../mkinstalldirs .
2773+
cd $(SHADOWDIR); ln -s ../*.[chm] ../*.in ../*.sh ../*.xs ../*.xbm ../gui_gtk_res.xml ../toolcheck ../proto ../vimtutor ../gvimtutor ../mkinstalldirs .
27742774
mkdir $(SHADOWDIR)/auto
27752775
cd $(SHADOWDIR)/auto; ln -s ../../auto/configure .
27762776
mkdir $(SHADOWDIR)/po

src/version.c

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

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
432,
767769
/**/
768770
431,
769771
/**/

0 commit comments

Comments
 (0)