diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-12-17 20:50:25 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-12-17 20:50:25 +0100 |
commit | a79a8944dade9115ccaa5a06a076dfb257e56c62 (patch) | |
tree | c9fb0d221cb756bfd84f0427cb618ec5e7034fd2 /src/configure.ac | |
parent | 8ea05de6aa1d133cba3381bcc36adf1736b08e00 (diff) | |
download | vim-git-a79a8944dade9115ccaa5a06a076dfb257e56c62.tar.gz |
patch 8.2.2151: $dir not expanded when configure checks for moonjitv8.2.2151
Problem: $dir not expanded when configure checks for moonjit.
Solution: Use double quotes instead of single quotes. (closes #7478)
Diffstat (limited to 'src/configure.ac')
-rw-r--r-- | src/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure.ac b/src/configure.ac index 062c75a20..22c280d41 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -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 |