diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-11-28 09:17:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-28 09:17:05 +0100 |
commit | 95e7656a152f6158b50ff15f232097ff2175d170 (patch) | |
tree | 72f06c4b4a0aaa17aa9108bc12f20d057b671151 /platform/osx/SCsub | |
parent | a26b36bec2e99a128b7a61ff9fa1e2e46148f547 (diff) | |
parent | a4a222d62dcffaf93e3dd439c3f61836a4cd831e (diff) |
Merge pull request #13359 from rraallvv/cache_pruning
Fixes for SCons shared cache for Travis-CI and AppVeyor-CI (master)
Diffstat (limited to 'platform/osx/SCsub')
-rw-r--r-- | platform/osx/SCsub | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/platform/osx/SCsub b/platform/osx/SCsub index be3950bc6d..16223654cc 100644 --- a/platform/osx/SCsub +++ b/platform/osx/SCsub @@ -16,7 +16,9 @@ files = [ 'power_osx.cpp', ] -binary = env.Program('#bin/godot', files) +prog = env.Program('#bin/godot', files) +env.NoCache(prog) + if env["debug_symbols"] == "full" or env["debug_symbols"] == "yes": - env.AddPostAction(binary, make_debug) + env.AddPostAction(prog, make_debug) |