Skip to content

Commit a34293a

Browse files
committed
patch 8.0.0694: building in shadow directory does not work
Problem: Building in shadow directory does not work. Running Vim fails. Solution: Add the new libvterm directory. Add missing change in command list.
1 parent e4f25e4 commit a34293a

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2810,7 +2810,7 @@ SHADOWDIR = shadow
28102810

28112811
shadow: runtime pixmaps
28122812
$(MKDIR_P) $(SHADOWDIR)
2813-
cd $(SHADOWDIR); ln -s ../*.[chm] ../*.in ../*.sh ../*.xs ../*.xbm ../gui_gtk_res.xml ../toolcheck ../proto ../vimtutor ../gvimtutor ../install-sh .
2813+
cd $(SHADOWDIR); ln -s ../*.[chm] ../*.in ../*.sh ../*.xs ../*.xbm ../gui_gtk_res.xml ../toolcheck ../proto ../libvterm ../vimtutor ../gvimtutor ../install-sh .
28142814
mkdir $(SHADOWDIR)/auto
28152815
cd $(SHADOWDIR)/auto; ln -s ../../auto/configure .
28162816
$(MKDIR_P) $(SHADOWDIR)/po

src/ex_cmds.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1483,6 +1483,9 @@ EX(CMD_tclfile, "tclfile", ex_tclfile,
14831483
EX(CMD_tearoff, "tearoff", ex_tearoff,
14841484
NEEDARG|EXTRA|TRLBAR|NOTRLCOM|CMDWIN,
14851485
ADDR_LINES),
1486+
EX(CMD_terminal, "terminal", ex_terminal,
1487+
RANGE|NOTADR|EXTRA|TRLBAR|CMDWIN,
1488+
ADDR_OTHER),
14861489
EX(CMD_tfirst, "tfirst", ex_tag,
14871490
RANGE|NOTADR|BANG|TRLBAR|ZEROR,
14881491
ADDR_LINES),

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+
694,
767769
/**/
768770
693,
769771
/**/

0 commit comments

Comments
 (0)