From: Benedikt Meurer Date: Tue, 10 Feb 2015 07:51:28 +0000 (+0100) Subject: Ignore unsupport host architectures for binutils download. X-Git-Tag: upstream/4.7.83~4503 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=33b672902dad0ac1154b5e366372802d2f504a4a;p=platform%2Fupstream%2Fv8.git Ignore unsupport host architectures for binutils download. BUG=v8:3880 LOG=n TBR=svenpanne@chromium.org Review URL: https://codereview.chromium.org/908173002 Cr-Commit-Position: refs/heads/master@{#26537} --- diff --git a/third_party/binutils/download.py b/third_party/binutils/download.py index c3ca205..44b6c65 100755 --- a/third_party/binutils/download.py +++ b/third_party/binutils/download.py @@ -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__':