From e85ce6ea2e09fe4d61c94e34e9e437c3c1f20b6e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 5 Jul 2018 17:11:24 +0200 Subject: [PATCH] patch 8.1.0153: build with SHADOWDIR fails Problem: Build with SHADOWDIR fails. (Elimar Riesebieter) Solution: Create a link for Make_all.mak. (Tony Mechelynck) --- src/Makefile | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 2c4421ee2..84595465d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2681,7 +2681,7 @@ SHADOWDIR = shadow shadow: runtime pixmaps $(MKDIR_P) $(SHADOWDIR) - cd $(SHADOWDIR); ln -s ../*.[chm] ../*.in ../*.sh ../*.xs ../*.xbm ../gui_gtk_res.xml ../toolcheck ../proto ../libvterm ../vimtutor ../gvimtutor ../install-sh . + cd $(SHADOWDIR); ln -s ../*.[chm] ../*.in ../*.sh ../*.xs ../*.xbm ../gui_gtk_res.xml ../toolcheck ../proto ../libvterm ../vimtutor ../gvimtutor ../install-sh ../Make_all.mak . mkdir $(SHADOWDIR)/auto cd $(SHADOWDIR)/auto; ln -s ../../auto/configure . $(MKDIR_P) $(SHADOWDIR)/po diff --git a/src/version.c b/src/version.c index 6e8f014a8..cfcbe53a3 100644 --- a/src/version.c +++ b/src/version.c @@ -789,6 +789,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 153, /**/ 152, /**/ -- 2.50.1