summaryrefslogtreecommitdiff
path: root/xmake/scripts/platform/iphoneos
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/scripts/platform/iphoneos')
-rw-r--r--xmake/scripts/platform/iphoneos/prober.lua26
1 files changed, 13 insertions, 13 deletions
diff --git a/xmake/scripts/platform/iphoneos/prober.lua b/xmake/scripts/platform/iphoneos/prober.lua
index 2c2892315..ae17a74c9 100644
--- a/xmake/scripts/platform/iphoneos/prober.lua
+++ b/xmake/scripts/platform/iphoneos/prober.lua
@@ -247,14 +247,14 @@ end
function prober.config()
-- call all probe functions
- utils.call( { prober._probe_arch
- , prober._probe_xcode
- , prober._probe_xcode_sdkver
- , prober._probe_make
- , prober._probe_ccache
- , prober._probe_toolchains}
- , nil
- , config)
+ return utils.call( { prober._probe_arch
+ , prober._probe_xcode
+ , prober._probe_xcode_sdkver
+ , prober._probe_make
+ , prober._probe_ccache
+ , prober._probe_toolchains}
+ , nil
+ , config)
end
@@ -262,11 +262,11 @@ end
function prober.global()
-- call all probe functions
- utils.call( { prober._probe_xcode
- , prober._probe_make
- , prober._probe_ccache}
- , nil
- , global)
+ return utils.call( { prober._probe_xcode
+ , prober._probe_make
+ , prober._probe_ccache}
+ , nil
+ , global)
end
-- return module: prober