From 171db2a26f882d891e91253badcca2408db68a4f Mon Sep 17 00:00:00 2001 From: Nick Desaulniers Date: Fri, 18 Oct 2019 10:22:46 -0700 Subject: [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 --- compiler_wrapper/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3