Skip to content

Commit 663950d

Browse files
jamessanchrisbra
authored andcommitted
patch 9.1.0696: installing runtime files fails when using SHADOWDIR
Problem: installing runtime files fails when using SHADOWDIR Solution: revert part of v9.1.0609, since runtime/doc/Makefile's default value for VIMPROG does not work if vim was built in a SHADOWDIR. (James McCoy) closes: #15575 Signed-off-by: James McCoy <jamessan@jamessan.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent 88a6dd0 commit 663950d

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2354,8 +2354,8 @@ installrtbase: $(HELPSOURCE)/vim.1 $(DEST_VIM) $(VIMTARGET) $(DEST_RT) \
23542354
cd $(HELPSOURCE); if test -z "$(CROSS_COMPILING)" -a -f tags; then \
23552355
mv -f tags tags.dist; fi
23562356
@echo generating help tags
2357-
-@cd $(HELPSOURCE); if test -z "$(CROSS_COMPILING)"; then \
2358-
$(MAKE) vimtags; fi
2357+
-@BUILD_DIR=`pwd`; cd $(HELPSOURCE); if test -z "$(CROSS_COMPILING)"; then \
2358+
$(MAKE) VIMPROG="$$BUILD_DIR/$(VIMTARGET)" vimtags; fi
23592359
cd $(HELPSOURCE); \
23602360
files=`ls *.txt tags`; \
23612361
files="$$files `ls *.??x tags-?? 2>/dev/null || true`"; \

src/version.c

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

705705
static int included_patches[] =
706706
{ /* Add new patch number below this line */
707+
/**/
708+
696,
707709
/**/
708710
695,
709711
/**/

0 commit comments

Comments
 (0)