diff options
| author | ruki <[email protected]> | 2015-12-15 10:51:07 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-12-15 10:51:07 +0800 |
| commit | da041a08d3e2faf3bdb88e9699af4a54f7a50f99 (patch) | |
| tree | 3e062b11b640adde50ea4c183c92f6bf3fd71d75 /xmake/scripts/platform/windows/prober.lua | |
| parent | 5152870f70f4cd527c619f28493d834319b519ca (diff) | |
update tbox for linux and fix prober
Diffstat (limited to 'xmake/scripts/platform/windows/prober.lua')
| -rw-r--r-- | xmake/scripts/platform/windows/prober.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xmake/scripts/platform/windows/prober.lua b/xmake/scripts/platform/windows/prober.lua index d32fac686..d5ccdef88 100644 --- a/xmake/scripts/platform/windows/prober.lua +++ b/xmake/scripts/platform/windows/prober.lua @@ -216,7 +216,11 @@ function prober._probe_toolpath(configs, kind, name, description) if toolpath then configs.set(kind, toolpath) end -- trace - utils.verbose("checking for %s (%s) ... %s", description, kind, utils.ifelse(toolpath, path.filename(toolpath), "no")) + if toolpath then + utils.verbose("checking for %s (%s) ... %s", description, kind, path.filename(toolpath), "no") + else + utils.verbose("checking for %s (%s) ... no", description, kind) + end -- ok return true |
