Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2008-03-19 20:23:14 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-03-19 20:23:14 +0300
commit285870d53b68bc691717b027b2eecdb3aea3dfc2 (patch)
tree6974c57718f3c595d6713dd35bc7c17b3af9a144 /SConstruct
parentcdc74b908104f0914c442225c24df4e84f416c14 (diff)
* BF_QUIET can now be set in user-config.py too.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 3ee56f7cff1..f8eef60a117 100644
--- a/SConstruct
+++ b/SConstruct
@@ -286,7 +286,7 @@ Help(opts.GenerateHelpText(env))
# default is new quieter output, but if you need to see the
# commands, do 'scons BF_QUIET=0'
bf_quietoutput = B.arguments.get('BF_QUIET', '1')
-if bf_quietoutput=='1':
+if env['BF_QUIET']:
B.set_quiet_output(env)
else:
if toolset=='msvc':