Commit 6627bb2f authored by akuegel's avatar akuegel Committed by Commit bot

Don't return early in case force-local-builds is passed.

BUG=
TBR=thakis@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/1492053005

Cr-Commit-Position: refs/heads/master@{#362955}
parent e1da704f
...@@ -307,7 +307,7 @@ def UpdateClang(args): ...@@ -307,7 +307,7 @@ def UpdateClang(args):
'buildtype=Official' in os.environ.get('GYP_DEFINES', '') and 'buildtype=Official' in os.environ.get('GYP_DEFINES', '') and
'branding=Chrome' in os.environ.get('GYP_DEFINES', '')) 'branding=Chrome' in os.environ.get('GYP_DEFINES', ''))
if ReadStampFile() == PACKAGE_VERSION: if ReadStampFile() == PACKAGE_VERSION and not args.force_local_build:
print 'Clang is already up to date.' print 'Clang is already up to date.'
if not need_gold_plugin or os.path.exists( if not need_gold_plugin or os.path.exists(
os.path.join(LLVM_BUILD_DIR, "lib/LLVMgold.so")): os.path.join(LLVM_BUILD_DIR, "lib/LLVMgold.so")):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment