diff options
author | Andrew Morrow <acm@mongodb.com> | 2016-08-08 21:13:07 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2016-08-13 13:12:32 -0400 |
commit | bd66e1bdbc627979e7bb6824fbdfc132093a9bf9 (patch) | |
tree | e4ad3b067b77c76d69ad987f71788d9de1056f86 /buildscripts/generate_compile_expansions.py | |
parent | f210923e76fa101ca417a085dd370219221cdda0 (diff) | |
download | mongo-bd66e1bdbc627979e7bb6824fbdfc132093a9bf9.tar.gz |
SERVER-25402 Add an option to not cache linked artifacts
Diffstat (limited to 'buildscripts/generate_compile_expansions.py')
-rwxr-xr-x[-rw-r--r--] | buildscripts/generate_compile_expansions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/generate_compile_expansions.py b/buildscripts/generate_compile_expansions.py index 97757d92cb6..ab1661bcfea 100644..100755 --- a/buildscripts/generate_compile_expansions.py +++ b/buildscripts/generate_compile_expansions.py @@ -76,4 +76,4 @@ if os.path.isfile(system_id_path): print "scons_cache_path: {0}".format(default_cache_path) if os.getenv("USE_SCONS_CACHE") not in (None, False, "false", ""): - print "scons_cache_args: --cache --cache-dir='{0}'".format(default_cache_path) + print "scons_cache_args: --cache=nolinked --cache-dir='{0}'".format(default_cache_path) |