aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-11-28 06:55:48 +0100
committerKim Alvefur <zash@zash.se>2016-11-28 06:55:48 +0100
commit1d21e033f34e1f8c4be30f94c5c91aceab994964 (patch)
treed4fbc1ce419e4efa56d6e4bad263a2255d2a009b /configure
parentde17820626e95da82830ddc55e6ccac4e1c2452d (diff)
downloadprosody-1d21e033f34e1f8c4be30f94c5c91aceab994964.tar.gz
prosody-1d21e033f34e1f8c4be30f94c5c91aceab994964.zip
configure: Fix quote on the correct side of the equals sign
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index d530debe..974823c3 100755
--- a/configure
+++ b/configure
@@ -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" ]