From 23a4d716ac6fc219f518a529250e9e8c3316bea3 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 29 Dec 2022 16:29:03 +0000 Subject: configure: Fix quoting of $LUA_SUFFIX (thanks shellcheck/Zash) --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 93d2fe7d..d6c36680 100755 --- a/configure +++ b/configure @@ -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 -- cgit v1.2.3