aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Desaulniers <ndesaulniers@google.com>2019-10-18 10:22:46 -0700
committerNick Desaulniers <ndesaulniers@google.com>2019-10-18 10:22:46 -0700
commit171db2a26f882d891e91253badcca2408db68a4f (patch)
treeb0e90325c18735d00d82a5e9f103f388a0156703
parent10b59352806a38d640a439c628f16a9c0ab69fdc (diff)
downloadtoolchain-utils-171db2a26f882d891e91253badcca2408db68a4f.tar.gz
[external][toolchain-utils] don't explicitly specify python2
We've recently moved our OSX builds from 10.10 to 10.13. Using python2 explicitly in the hash bang fails with: env: python2: No such file or directory Unspecify the version of python; it should default to python3 in OSX 10.13. Bug: 139945549 Change-Id: Id10e2009e568401d4b0578742fae38f6e6a4e062 Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>
-rwxr-xr-xcompiler_wrapper/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler_wrapper/build.py b/compiler_wrapper/build.py
index 6b647714..763b3e64 100755
--- a/compiler_wrapper/build.py
+++ b/compiler_wrapper/build.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be