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 | 8f3f909b30079072560fb3cb1b21c95c2845cce9 (patch) | |
tree | d4fbc1ce419e4efa56d6e4bad263a2255d2a009b /configure | |
parent | 7e302e2b0e578b6916b7d29d1a250d97b59ac8ae (diff) | |
download | prosody-8f3f909b30079072560fb3cb1b21c95c2845cce9.tar.gz prosody-8f3f909b30079072560fb3cb1b21c95c2845cce9.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" ] |