summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Egesdahl <ryan.egesdahl@mongodb.com>2022-02-24 23:30:24 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-03-07 19:19:56 +0000
commit91c01f506c0de7f683c632e418bf075435b93a63 (patch)
tree051dac42993b2da62186da3576ab587c121b4566
parentd719e12c3e8a0ae5744e3bd53c27bcffc8e575c4 (diff)
downloadmongo-91c01f506c0de7f683c632e418bf075435b93a63.tar.gz
SERVER-63497 Fix icecream debugging
(cherry picked from commit 1c31d7055ebb875775cd987c14cc82fb40a19b2e)
-rw-r--r--site_scons/site_tools/icecream.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/site_scons/site_tools/icecream.py b/site_scons/site_tools/icecream.py
index 4dadefe32ba..7689d681b1e 100644
--- a/site_scons/site_tools/icecream.py
+++ b/site_scons/site_tools/icecream.py
@@ -135,7 +135,7 @@ def generate(env):
env.get('ICECREAM_TARGET_DIR', '#./.icecream')
)
verbose = env.get('ICECREAM_VERBOSE', False)
- env['ICECREAM_DEBUG'] = env.get('ICECREAM_DEBUG', False)
+ env['ICECC_DEBUG'] = env.get('ICECC_DEBUG', False)
# We have a lot of things to build and run that the final user
# environment doesn't need to see or know about. Make a custom env
@@ -511,7 +511,7 @@ def generate(env):
env[command] = " ".join(["$( $ICERUN_GENERATOR $)", env[command]])
# Uncomment these to debug your icecc integration
- if env['ICECREAM_DEBUG']:
+ if env['ICECC_DEBUG']:
env['ENV']['ICECC_DEBUG'] = 'debug'
env['ENV']['ICECC_LOGFILE'] = 'icecc.log'