[SCons] Print options read from cantera.conf

This prevents surprises when an unexpected option value is saved in
cantera.conf.
This commit is contained in:
Ray Speth 2013-06-17 14:19:50 +00:00
parent 28154d847d
commit d19d18dd77

View file

@ -638,6 +638,12 @@ for arg in ARGUMENTS:
print 'Encountered unexpected command line argument: %r' % arg
sys.exit(0)
# Print values of all build options:
print "Configuration variables read from 'cantera.conf' and command line:"
for line in open('cantera.conf'):
print ' ', line.strip()
print
# ********************************************
# *** Configure system-specific properties ***
# ********************************************