Ignore unsupport host architectures for binutils download.
authorBenedikt Meurer <bmeurer@chromium.org>
Tue, 10 Feb 2015 07:51:28 +0000 (08:51 +0100)
committerBenedikt Meurer <bmeurer@chromium.org>
Tue, 10 Feb 2015 07:51:42 +0000 (07:51 +0000)
BUG=v8:3880
LOG=n
TBR=svenpanne@chromium.org

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

Cr-Commit-Position: refs/heads/master@{#26537}

third_party/binutils/download.py

index c3ca205..44b6c65 100755 (executable)
@@ -110,8 +110,7 @@ def main(args):
       return ret
     # Fetch the x64 toolchain as well for official bots with 64-bit kernels.
     return FetchAndExtract('x64')
-  print "Host architecture %s is not supported." % arch
-  return 1
+  return 0
 
 
 if __name__ == '__main__':