forked from dolphin-emu/dolphin
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
This commit is contained in:
@@ -131,7 +131,7 @@ env = Environment(
|
||||
# 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"
|
||||
|
Reference in New Issue
Block a user