From 0a1909e68290a01da405ee37c25dfb573631aedb Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sat, 3 May 2014 17:39:19 +0000 Subject: [PATCH] [SCons] Print config.log when SCons is in verbose mode --- SConstruct | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SConstruct b/SConstruct index e65d5bf12..9be5dd15e 100644 --- a/SConstruct +++ b/SConstruct @@ -860,6 +860,10 @@ env['FORTRANMODDIR'] = '${TARGET.dir}' env = conf.Finish() +if env['VERBOSE']: + print '-------------------- begin config.log --------------------' + print open('config.log').read() + print '--------------------- end config.log ---------------------' # Python 2 Package Settings cython_min_version = LooseVersion('0.17')