diff options
author | Kim Alvefur <zash@zash.se> | 2016-11-28 06:55:48 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-11-28 06:55:48 +0100 |
commit | 1d21e033f34e1f8c4be30f94c5c91aceab994964 (patch) | |
tree | d4fbc1ce419e4efa56d6e4bad263a2255d2a009b /configure | |
parent | de17820626e95da82830ddc55e6ccac4e1c2452d (diff) | |
download | prosody-1d21e033f34e1f8c4be30f94c5c91aceab994964.tar.gz prosody-1d21e033f34e1f8c4be30f94c5c91aceab994964.zip |
configure: Fix quote on the correct side of the equals sign
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -316,7 +316,7 @@ then 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" ] |