comparison src/configure.ac @ 23211:96a72f1f6c0c v8.2.2151

patch 8.2.2151: $dir not expanded when configure checks for moonjit Commit: https://github.com/vim/vim/commit/a79a8944dade9115ccaa5a06a076dfb257e56c62 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 17 20:50:25 2020 +0100 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 https://github.com/vim/vim/issues/7478)
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Dec 2020 21:00:05 +0100
parents 55f8b7da27f3
children 194e1fe08554
comparison
equal deleted inserted replaced
23210:da9d651f3250 23211:96a72f1f6c0c
630 # https://groups.google.com/forum/#!topic/vim_use/O0vek60WuTk 630 # https://groups.google.com/forum/#!topic/vim_use/O0vek60WuTk
631 lua_suf=/moonjit-2.3 631 lua_suf=/moonjit-2.3
632 inc_path="$vi_cv_path_lua_pfx/include" 632 inc_path="$vi_cv_path_lua_pfx/include"
633 for dir in "$inc_path"/moonjit-[[0-9]]* ; do 633 for dir in "$inc_path"/moonjit-[[0-9]]* ; do
634 if test -d "$dir" ; then 634 if test -d "$dir" ; then
635 lua_suf=`basename '$dir'` 635 lua_suf=`basename "$dir"`
636 lua_suf="/$lua_suf" 636 lua_suf="/$lua_suf"
637 break 637 break
638 fi 638 fi
639 done 639 done
640 AC_MSG_CHECKING(if lua.h can be found in $inc_path$lua_suf) 640 AC_MSG_CHECKING(if lua.h can be found in $inc_path$lua_suf)