# HG changeset patch # User Kim Alvefur # Date 1480312548 -3600 # Node ID a43a9ffd0579934a76fc9ff36b8272fbcff7c6d4 # Parent 4ba697569f84ad6c97bc5016b67eb5af8a238796 configure: Fix quote on the correct side of the equals sign diff -r 4ba697569f84 -r a43a9ffd0579 configure --- a/configure Sun Nov 27 20:46:55 2016 +0100 +++ b/configure Mon Nov 28 06:55:48 2016 +0100 @@ -316,7 +316,7 @@ echo -n "Looking for Lua... " if [ ! "$find_lua" ] then - find_lua"=$(find_program lua$LUA_SUFFIX)" + find_lua="$(find_program lua$LUA_SUFFIX)" echo "lua$LUA_SUFFIX found in \$PATH: $find_lua" fi if [ "$find_lua" ]