summaryrefslogtreecommitdiff
path: root/xmake/scripts/platform/platform.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2015-06-03 11:56:22 +0800
committerruki <[email protected]>2015-06-03 11:56:22 +0800
commit8f5a561006bb5b0952278075deb908633317c987 (patch)
tree4a57ebf7283fd7c47b88f7c7c0aac4caa67cb607 /xmake/scripts/platform/platform.lua
parent648d0f6875478a5184668996f3948a0e61e862a0 (diff)
clean the cached configure
Diffstat (limited to 'xmake/scripts/platform/platform.lua')
-rw-r--r--xmake/scripts/platform/platform.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/scripts/platform/platform.lua b/xmake/scripts/platform/platform.lua
index 2858018c2..4361ea42a 100644
--- a/xmake/scripts/platform/platform.lua
+++ b/xmake/scripts/platform/platform.lua
@@ -275,7 +275,7 @@ function platform.probe(configs, is_global)
for _, plat in ipairs(plats) do
local p = platform._load(plat)
if p and p._PROBER and p._PROBER.done and p._HOST and p._HOST == xmake._HOST then
- p._PROBER.done(configs)
+ p._PROBER.done(configs, is_global)
end
end
@@ -284,7 +284,7 @@ function platform.probe(configs, is_global)
-- probe it
local p = platform._load(config.get("plat"))
if p and p._PROBER and p._PROBER.done then
- p._PROBER.done(configs)
+ p._PROBER.done(configs, is_global)
end
end
end