summaryrefslogtreecommitdiff
path: root/modules/gdnative/SCsub
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-11-28 09:17:05 +0100
committerGitHub <noreply@github.com>2017-11-28 09:17:05 +0100
commit95e7656a152f6158b50ff15f232097ff2175d170 (patch)
tree72f06c4b4a0aaa17aa9108bc12f20d057b671151 /modules/gdnative/SCsub
parenta26b36bec2e99a128b7a61ff9fa1e2e46148f547 (diff)
parenta4a222d62dcffaf93e3dd439c3f61836a4cd831e (diff)
Merge pull request #13359 from rraallvv/cache_pruning
Fixes for SCons shared cache for Travis-CI and AppVeyor-CI (master)
Diffstat (limited to 'modules/gdnative/SCsub')
-rw-r--r--modules/gdnative/SCsub3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/gdnative/SCsub b/modules/gdnative/SCsub
index f5a593cf4e..1641d26cbf 100644
--- a/modules/gdnative/SCsub
+++ b/modules/gdnative/SCsub
@@ -248,4 +248,5 @@ if ARGUMENTS.get('gdnative_wrapper', False):
if not env.msvc:
gd_wrapper_env.Append(CCFLAGS=['-fPIC'])
- gd_wrapper_env.Library("#bin/gdnative_wrapper_code", [gensource])
+ lib = gd_wrapper_env.Library("#bin/gdnative_wrapper_code", [gensource])
+ gd_wrapper_env.NoCache(lib)