diff options
| author | ruki <[email protected]> | 2015-06-10 11:51:06 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-06-10 11:51:06 +0800 |
| commit | 21829afa8efa18ca57e4bd9b322c6be1f84d392d (patch) | |
| tree | e3af545e1c76f83824fbd63f8f0043363252cd9f /xmake/scripts/platform/linux/prober.lua | |
| parent | 177400e62e74d5ad3539573cfd3143cd19d3d30f (diff) | |
fix merge option and config for boolean value
Diffstat (limited to 'xmake/scripts/platform/linux/prober.lua')
| -rw-r--r-- | xmake/scripts/platform/linux/prober.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/scripts/platform/linux/prober.lua b/xmake/scripts/platform/linux/prober.lua index 92f670394..5916a39bb 100644 --- a/xmake/scripts/platform/linux/prober.lua +++ b/xmake/scripts/platform/linux/prober.lua @@ -53,7 +53,7 @@ function prober._probe_ccache(configs) if configs.ccache and configs.__ccache then return true end -- disable? - if not configs.ccache then + if type(configs.ccache) == "boolean" and not configs.ccache then configs.__ccache = nil return true end |
