summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Hundebøll <martin@hundeboll.net>2014-10-30 11:43:24 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-12-31 10:09:51 +0000
commit0f9823adb7832c4ca3b2985391473aa6e8c22148 (patch)
tree460f6c30c61cd6bfd0c8f22b39fbb19a7fd48219
parent72536d4e0cc3379001b730950afa012f7a96a79b (diff)
downloadbitbake-0f9823adb7832c4ca3b2985391473aa6e8c22148.tar.gz
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|' 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--lib/progressbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/progressbar.py b/lib/progressbar.py
index b668647a3..114cdc16b 100644
--- a/lib/progressbar.py
+++ b/lib/progressbar.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
#
# progressbar - Text progressbar library for python.