mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.2151: $dir not expanded when configure checks for moonjit
Problem: $dir not expanded when configure checks for moonjit. Solution: Use double quotes instead of single quotes. (closes #7478)
This commit is contained in:
parent
8ea05de6aa
commit
a79a8944da
2
src/auto/configure
vendored
2
src/auto/configure
vendored
@ -5479,7 +5479,7 @@ $as_echo "no" >&6; }
|
||||
inc_path="$vi_cv_path_lua_pfx/include"
|
||||
for dir in "$inc_path"/moonjit-[0-9]* ; do
|
||||
if test -d "$dir" ; then
|
||||
lua_suf=`basename '$dir'`
|
||||
lua_suf=`basename "$dir"`
|
||||
lua_suf="/$lua_suf"
|
||||
break
|
||||
fi
|
||||
|
@ -632,7 +632,7 @@ if test "$enable_luainterp" = "yes" -o "$enable_luainterp" = "dynamic"; then
|
||||
inc_path="$vi_cv_path_lua_pfx/include"
|
||||
for dir in "$inc_path"/moonjit-[[0-9]]* ; do
|
||||
if test -d "$dir" ; then
|
||||
lua_suf=`basename '$dir'`
|
||||
lua_suf=`basename "$dir"`
|
||||
lua_suf="/$lua_suf"
|
||||
break
|
||||
fi
|
||||
|
@ -750,6 +750,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2151,
|
||||
/**/
|
||||
2150,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user