diff options
author | Michal Simek <michal.simek@xilinx.com> | 2013-05-06 04:11:58 +0000 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2013-05-09 14:27:41 -0700 |
commit | e85707570cf44f7b2d1da5ae92af3684c72c28f2 (patch) | |
tree | e0775bf370304cd401278b0f67a92248e629e146 /tools | |
parent | f0b739f15f3369273ea372eb29a2b841ad6d0ddd (diff) |
patman: Do not hardcode python path
Patman requires python 2.7.4 to run but it doesn't
need to be placed in /usr/bin/python.
Use env to ensure that the interpreter used is
the first one on environment's $PATH on system
with several versions of Python installed.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@ti.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/patman/patman.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/patman.py b/tools/patman/patman.py index a8061a93721..7a317c5c25d 100755 --- a/tools/patman/patman.py +++ b/tools/patman/patman.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # # Copyright (c) 2011 The Chromium OS Authors. # |