From 1c31d7055ebb875775cd987c14cc82fb40a19b2e Mon Sep 17 00:00:00 2001 From: Ryan Egesdahl Date: Thu, 24 Feb 2022 23:30:24 +0000 Subject: SERVER-63497 Fix icecream debugging --- site_scons/site_tools/icecream.py | 4 ++-- 1 file 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' -- cgit v1.2.1