From b69a707cebcba82b2814f3c1ae5fc10249abcbd4 Mon Sep 17 00:00:00 2001 From: "XTra.KrazzY" Date: Sat, 20 Sep 2008 10:21:33 +0000 Subject: [PATCH] Fixed "verbose=False" being recognized as true error in SConstruct git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@583 8ced0084-cf51-0410-be5f-012b33b47a6e --- SConstruct | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/SConstruct b/SConstruct index 2a3650636d..66576d1edc 100644 --- a/SConstruct +++ b/SConstruct @@ -121,17 +121,17 @@ env = Environment( 'HOME' : os.environ['HOME'] }, BUILDERS = builders, - DESCRIPTION = description, - SUMMARY=description, - LICENSE = license, - NAME = name, - VERSION = version, + DESCRIPTION = description, + SUMMARY = description, + LICENSE = license, + NAME = name, + VERSION = version, ) # verbose compile verbose = ARGUMENTS.get('verbose', False) -if not verbose: +if not bool(verbose): env['CCCOMSTR'] = "Compiling $TARGET" env['CXXCOMSTR'] = "Compiling $TARGET" env['ARCOMSTR'] = " ar $TARGER"