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 /modules/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 'modules/SCsub')
-rw-r--r-- | modules/SCsub | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/SCsub b/modules/SCsub index c1cf5a6c1a..ea8b58b8c5 100644 --- a/modules/SCsub +++ b/modules/SCsub @@ -18,5 +18,6 @@ for x in env.module_list: SConscript(x + "/SCsub") lib = env_modules.Library("modules", env.modules_sources) +env_modules.NoCache(lib) env.Prepend(LIBS=[lib]) |