Skip to content

Commit c96a2f3

Browse files
committed
patch 7.4.2167
Problem: Small build can't run tests. Solution: Don't try setting 'packpath'.
1 parent 3286043 commit c96a2f3

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/testdir/setup.vim

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
" Make sure 'runtimepath' and 'packpath' does not include $HOME.
44
set rtp=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after
5-
let &packpath = &rtp
5+
if has('packages')
6+
let &packpath = &rtp
7+
endif
68

79
" Only when the +eval feature is present.
810
if 1

src/version.c

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

764764
static int included_patches[] =
765765
{ /* Add new patch number below this line */
766+
/**/
767+
2167,
766768
/**/
767769
2166,
768770
/**/

0 commit comments

Comments
 (0)