scripts: 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|'

(From OE-Core rev: 6d3de22a19657a413e01d7bb5fd74d16c00dc696)

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>
This commit is contained in:
Martin Hundebøll 2014-10-30 11:43:24 +01:00 committed by Richard Purdie
parent 3e068831a1
commit c0dafd3101
15 changed files with 15 additions and 15 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2011 Intel, Inc.
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2011 Intel, Inc.
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2007 Red Hat Inc.
# Copyright (c) 2009, 2010, 2011 Intel, Inc.

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2007 Red Hat, Inc.
# Copyright (c) 2009, 2010, 2011 Intel, Inc.

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2008, 2009, 2010 Intel, Inc.
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Marko Saukko <marko.saukko@cybercom.com>
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
# vim: ai ts=4 sts=4 et sw=4
#
# Copyright (c) 2009, 2010, 2011 Intel, Inc.

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2011 Intel, Inc.
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2011 Intel, Inc.
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2007 Red Hat, Inc.
# Copyright (c) 2011 Intel, Inc.

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2007, Red Hat, Inc.
# Copyright (c) 2009, 2010, 2011 Intel, Inc.

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2010, 2011 Intel Inc.
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2009, 2010, 2011 Intel, Inc.
# Copyright (c) 2007, 2008 Red Hat, Inc.

View File

@ -1,4 +1,4 @@
#!/usr/bin/python -tt
#!/usr/bin/env python -tt
#
# Copyright (c) 2011 Intel, Inc.
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
#
# This file is part of pybootchartgui.