diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-07 02:56:19 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-07 02:56:19 +0000 |
commit | c2ed8872219576a1c3913ca33757e619f86e5e62 (patch) | |
tree | 2e52e941c4fc8d17a00e12d2603b855f4459be83 | |
parent | b7d0ec36a5ad052cc846ebaaab1408aacc4b3cd5 (diff) | |
download | chromium_src-c2ed8872219576a1c3913ca33757e619f86e5e62.zip chromium_src-c2ed8872219576a1c3913ca33757e619f86e5e62.tar.gz chromium_src-c2ed8872219576a1c3913ca33757e619f86e5e62.tar.bz2 |
Use `/usr/bin/env python` instead of `/usr/bin/python2.6`.
Useful on machines that don't have 2.6 but do have 2.7.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8825016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113334 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | chrome/tools/build/mac/tweak_info_plist | 2 | ||||
-rwxr-xr-x | tools/mac/symbolicate_crash.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/tools/build/mac/tweak_info_plist b/chrome/tools/build/mac/tweak_info_plist index 41112b4..b65abc6 100755 --- a/chrome/tools/build/mac/tweak_info_plist +++ b/chrome/tools/build/mac/tweak_info_plist @@ -1,4 +1,4 @@ -#!/usr/bin/python2.6 +#!/usr/bin/env python # Copyright (c) 2011 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be diff --git a/tools/mac/symbolicate_crash.py b/tools/mac/symbolicate_crash.py index 4e84125..f66d289 100755 --- a/tools/mac/symbolicate_crash.py +++ b/tools/mac/symbolicate_crash.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.6 +#!/usr/bin/env python # Copyright (c) 2011 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. |