diff options
| author | Martin Hundebøll <martin@hundeboll.net> | 2014-10-30 11:43:24 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-12 15:25:17 +0000 |
| commit | 3e068831a17aca73703054aebb07eaabcb5d3dcf (patch) | |
| tree | 85a4fe176f1f9d1274e5361b40bbc54bff361ff8 | |
| parent | 6bb241a278135e760d50380fd3f7b0ff52414328 (diff) | |
| download | poky-3e068831a17aca73703054aebb07eaabcb5d3dcf.tar.gz | |
bitbake: progressbar: use '/usr/bin/env' in shebangs with python
To support yocto on systems with python3 as default version, scripts
should use /usr/bin/env python in the shebang, as this allows the use of
a fake env to mimic python2 as default version.
This patch simply replaces occurrences of #!/usr/bin/python with
#!/usr/bin/env python and was done with this oneliner:
git grep -lE '^#!/usr/bin/python' | xargs \
sed -i 's|/usr/bin/python|/usr/bin/env python|'
(Bitbake rev: 90d9bf1bda282fb5d053a42438a8cfd02475b9cd)
Signed-off-by: Martin Hundebøll <martin@hundeboll.net>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | bitbake/lib/progressbar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/progressbar.py b/bitbake/lib/progressbar.py index b668647a36..114cdc16ba 100644 --- a/bitbake/lib/progressbar.py +++ b/bitbake/lib/progressbar.py | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | #!/usr/bin/python | 1 | #!/usr/bin/env python |
| 2 | # -*- coding: iso-8859-1 -*- | 2 | # -*- coding: iso-8859-1 -*- |
| 3 | # | 3 | # |
| 4 | # progressbar - Text progressbar library for python. | 4 | # progressbar - Text progressbar library for python. |
