From fe00b3fd16cee5d1c18e82fa8a20867a7399205c Mon Sep 17 00:00:00 2001 From: SirLynix Date: Fri, 9 Feb 2024 16:57:21 +0100 Subject: [PATCH] Build: Don't link with system-installed libs on CI Same but less aggressive --- xmake.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake.lua b/xmake.lua index 275fdfdba..9810479a6 100644 --- a/xmake.lua +++ b/xmake.lua @@ -286,7 +286,7 @@ add_requires( -- Don't link with system-installed libs on CI if os.getenv("CI") then - add_requireconfs("**", "*.**", { system = false }) + add_requireconfs("*", { system = false }) end -- Module dependencies