From: Gabe Black Date: Fri, 4 Mar 2011 08:11:02 +0000 (-0800) Subject: SCons: Fix the polarity on the --ignore-style check. X-Git-Tag: stable_2012_02_02~484 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=674b94128284796c90f12e16d5029ce693464deb;p=gem5.git SCons: Fix the polarity on the --ignore-style check. --- diff --git a/SConstruct b/SConstruct index 89036c31f..8f049e749 100755 --- a/SConstruct +++ b/SConstruct @@ -239,7 +239,7 @@ if hgdir.exists(): # 2) Ensure that the style hook is in place. try: ui = None - if GetOption('ignore_style'): + if not GetOption('ignore_style'): from mercurial import ui ui = ui.ui() except ImportError: