We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ffe35f + 15cc7a3 commit bcd6a83Copy full SHA for bcd6a83
1 file changed
xmake/core/package/package.lua
@@ -1289,6 +1289,9 @@ function _instance:build_envs(lazy_loading)
1289
setmetatable(build_envs, { __index = function (tbl, key)
1290
local result = {}
1291
local value = config.get(key)
1292
+ if value and builtin_configs:has(key) and type(value) == "string" then
1293
+ value = os.argv(value)
1294
+ end
1295
if value == nil then
1296
value = self:tool(key)
1297
end
0 commit comments