summaryrefslogtreecommitdiff
path: root/site_scons
diff options
context:
space:
mode:
authorMathew Robinson <mathew@chasinglogic.io>2020-02-24 13:44:41 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-02-24 19:53:44 +0000
commit551ae2747bdbd52b58e29e226d4bc1fb2b603a3e (patch)
tree82dfb4f2edfa77d760b8ee7b725c7930c4f6defd /site_scons
parenteae0b5ee0dabf2cc01008c3e4eb1c82ced80f629 (diff)
downloadmongo-551ae2747bdbd52b58e29e226d4bc1fb2b603a3e.tar.gz
SERVER-40943 Define a variables file to build with brew llvm and the remote v3 clang
Diffstat (limited to 'site_scons')
-rw-r--r--site_scons/site_tools/icecream.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/site_scons/site_tools/icecream.py b/site_scons/site_tools/icecream.py
index a20b5d9bdba..5ed9faa9456 100644
--- a/site_scons/site_tools/icecream.py
+++ b/site_scons/site_tools/icecream.py
@@ -148,13 +148,10 @@ def generate(env):
env.Command(
target="$ICECC_VERSION",
source=["$CC", "$CXX"],
- action=SCons.Action.ListAction(
- [
- SCons.Defaults.Mkdir("${ICECC_VERSION.Dir('').abspath}"),
- cmdstr + " -o $TARGET $ICECC_VERSION_URL",
- ],
- "Downloading environment: $TARGET from $ICECC_VERSION_URL",
- ),
+ action=[
+ SCons.Defaults.Mkdir("${ICECC_VERSION.Dir('').abspath}"),
+ cmdstr + " -o $TARGET $ICECC_VERSION_URL",
+ ],
)
else:
env["ICECC_VERSION"] = env.File("$ICECC_VERSION")