diff options
Diffstat (limited to 'xmake/scripts/platform/mingw')
| -rw-r--r-- | xmake/scripts/platform/mingw/prober.lua | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/xmake/scripts/platform/mingw/prober.lua b/xmake/scripts/platform/mingw/prober.lua index 86fca46ab..0134c0509 100644 --- a/xmake/scripts/platform/mingw/prober.lua +++ b/xmake/scripts/platform/mingw/prober.lua @@ -168,22 +168,22 @@ end function prober.config() -- call all probe functions - utils.call( { prober._probe_arch - , prober._probe_make - , prober._probe_ccache - , prober._probe_toolchains} - , nil - , config) + return utils.call( { prober._probe_arch + , prober._probe_make + , prober._probe_ccache + , prober._probe_toolchains} + , nil + , config) end -- probe the global configure function prober.global() -- call all probe functions - utils.call( { prober._probe_make - , prober._probe_ccache} - , nil - , global) + return utils.call( { prober._probe_make + , prober._probe_ccache} + , nil + , global) end -- return module: prober |
