# HG changeset patch # User Matthew Wild # Date 1672331343 0 # Node ID 6b43bf85032bbc6f60188b8c8272a8424239f6e7 # Parent a4ac16e5b6558996d2e44ec0ed21b40932a5513e configure: Fix quoting of $LUA_SUFFIX (thanks shellcheck/Zash) diff -r a4ac16e5b655 -r 6b43bf85032b configure --- a/configure Thu Dec 29 16:25:00 2022 +0000 +++ b/configure Thu Dec 29 16:29:03 2022 +0000 @@ -304,7 +304,7 @@ 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