Skip to content

Commit a79a894

Browse files
committed
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)
1 parent 8ea05de commit a79a894

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/auto/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5479,7 +5479,7 @@ $as_echo "no" >&6; }
54795479
inc_path="$vi_cv_path_lua_pfx/include"
54805480
for dir in "$inc_path"/moonjit-[0-9]* ; do
54815481
if test -d "$dir" ; then
5482-
lua_suf=`basename '$dir'`
5482+
lua_suf=`basename "$dir"`
54835483
lua_suf="/$lua_suf"
54845484
break
54855485
fi

src/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ if test "$enable_luainterp" = "yes" -o "$enable_luainterp" = "dynamic"; then
632632
inc_path="$vi_cv_path_lua_pfx/include"
633633
for dir in "$inc_path"/moonjit-[[0-9]]* ; do
634634
if test -d "$dir" ; then
635-
lua_suf=`basename '$dir'`
635+
lua_suf=`basename "$dir"`
636636
lua_suf="/$lua_suf"
637637
break
638638
fi

src/version.c

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

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2151,
753755
/**/
754756
2150,
755757
/**/

0 commit comments

Comments
 (0)