diff options
author | Matthew Wild <mwild1@gmail.com> | 2022-12-29 16:29:03 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2022-12-29 16:29:03 +0000 |
commit | 23a4d716ac6fc219f518a529250e9e8c3316bea3 (patch) | |
tree | 233d9f6e19f0297ba8914cf29fc066f8f9685046 | |
parent | 45978d6be230d723065644a5a81b626d333d5100 (diff) | |
download | prosody-23a4d716ac6fc219f518a529250e9e8c3316bea3.tar.gz prosody-23a4d716ac6fc219f518a529250e9e8c3316bea3.zip |
configure: Fix quoting of $LUA_SUFFIX (thanks shellcheck/Zash)
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -304,7 +304,7 @@ if [ "$OSPRESET_SET" = "yes" ]; then LUA_SUFFIX="5.4"; LUA_SUFFIX_SET=yes fi - LUA_CF="$(pkg-config --cflags-only-I lua$LUA_SUFFIX)" + LUA_CF="$(pkg-config --cflags-only-I lua"$LUA_SUFFIX")" LUA_CF="${LUA_CF#*-I}" LUA_CF="${LUA_CF%% *}" if [ "$LUA_CF" != "" ]; then |