Changeset

8086:4d363834f36d

configure: Fix explanation of where it looked for an interpreter (luarocks 3dcfa00, thanks Izaron)
author Kim Alvefur <zash@zash.se>
date Sat, 15 Apr 2017 02:06:42 +0200
parents 8084:655837e9eeeb
children 8087:eb38f3b919be
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Thu Apr 13 22:37:35 2017 +0200
+++ b/configure	Sat Apr 15 02:06:42 2017 +0200
@@ -428,7 +428,7 @@
 if [ "$lua_interp_found" != "yes" ]
 then
    [ "$LUA_VERSION_SET" ] && { interp="Lua $LUA_VERSION" ;} || { interp="Lua" ;}
-   [ "$LUA_DIR_SET" -o "$LUA_BINDIR_SET" ] && { where="$LUA_BINDIR" ;} || { interp="\$PATH" ;}
+   [ "$LUA_DIR_SET" -o "$LUA_BINDIR_SET" ] && { where="$LUA_BINDIR" ;} || { where="\$PATH" ;}
    echo "$interp interpreter not found in $where"
    die "You may want to use the flags --with-lua, --with-lua-bin and/or --lua-suffix. See --help."
 fi