From e032e9e56be059f08589c37d27163eef167fe708 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Sun, 16 Mar 2014 02:52:55 +0000 Subject: [PATCH] Took out a print statement that caused crashes on some systems that don't define PYTHONPATH Thanks Ray for pointing this out. --- SConstruct | 2 -- 1 file changed, 2 deletions(-) diff --git a/SConstruct b/SConstruct index afccd1473..631365cfc 100644 --- a/SConstruct +++ b/SConstruct @@ -649,7 +649,6 @@ elif env['env_vars']: # Strip name of leading and trailer white space. This is a known error that has led to problems. # name = name_n.strip() - print 'name environ lookup is : ', os.environ[name] # # Add name to the saved environment for later use, getting the environmental value # @@ -659,7 +658,6 @@ elif env['env_vars']: print 'WARNING: failed to propagate environment variable', name print ' Go back and edit cantera.conf file' -# exit(0) env['extra_inc_dirs'] = [d for d in env['extra_inc_dirs'].split(':') if d] env['extra_lib_dirs'] = [d for d in env['extra_lib_dirs'].split(':') if d]