diff options
author | skonig@chromium.org <skonig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-19 20:55:56 +0000 |
---|---|---|
committer | skonig@chromium.org <skonig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-19 20:55:56 +0000 |
commit | 354ee53da13cf83ce387f84c7a8f164fa0339c03 (patch) | |
tree | 6621631055ceb84d8ee27f831465a119ab570109 /remoting | |
parent | 851faf111b0f1e2b5fe29991979242f7024a9412 (diff) | |
download | chromium_src-354ee53da13cf83ce387f84c7a8f164fa0339c03.zip chromium_src-354ee53da13cf83ce387f84c7a8f164fa0339c03.tar.gz chromium_src-354ee53da13cf83ce387f84c7a8f164fa0339c03.tar.bz2 |
Source Python from /usr/bin rather than the user's path.
It's possible for multiple versions of Python to be installed. Sourcing
from the path can cause us to load the wrong version, causing the
script to fail. Sourcing from /usr/bin ensures
that the version we declare a dependency for is the one that's
used.
BUG=166591
Test=Manual
Review URL: https://chromiumcodereview.appspot.com/11644022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173986 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rwxr-xr-x | remoting/tools/me2me_virtual_host.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/tools/me2me_virtual_host.py b/remoting/tools/me2me_virtual_host.py index da9bbf5..c1e488c 100755 --- a/remoting/tools/me2me_virtual_host.py +++ b/remoting/tools/me2me_virtual_host.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Copyright (c) 2012 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. |