diff options
| author | ruki <[email protected]> | 2015-06-04 16:36:10 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-06-04 16:36:10 +0800 |
| commit | c17f9ed42c8529f3ff724e0d0614b99eac6374c0 (patch) | |
| tree | 2e4524e89ec73e492e09e682bf2c3274aee73833 /xmake/scripts/platform/iphoneos/prober.lua | |
| parent | 6c5fbedfe26db54b0bbb95fa9154ed759c7ad98f (diff) | |
fix global prober bug
Diffstat (limited to 'xmake/scripts/platform/iphoneos/prober.lua')
| -rw-r--r-- | xmake/scripts/platform/iphoneos/prober.lua | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/xmake/scripts/platform/iphoneos/prober.lua b/xmake/scripts/platform/iphoneos/prober.lua index d8a1c5330..589e3a4b1 100644 --- a/xmake/scripts/platform/iphoneos/prober.lua +++ b/xmake/scripts/platform/iphoneos/prober.lua @@ -125,8 +125,8 @@ function prober._probe_xcode_sdkver(configs) return true end --- probe the configure -function prober.done(configs, is_global) +-- probe the project configure +function prober.config(configs) -- probe the architecture if not prober._probe_arch(configs) then return end @@ -139,5 +139,13 @@ function prober.done(configs, is_global) end +-- probe the global configure +function prober.config(configs) + + -- probe the xcode application directory + if not prober._probe_xcode(configs) then return end + +end + -- return module: prober return prober |
