Skip to content
Snippets Groups Projects
Commit 94b13bba authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Tom Rini
Browse files

host-tools: use python2 explicitly for shebang

All of these host tools are apparently written for Python2,
not Python3.

Use 'python2' in the shebang line according to PEP 394
(https://www.python.org/dev/peps/pep-0394/

).

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 56d1dded
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python #!/usr/bin/env python2
""" """
setup.py file for SWIG libfdt setup.py file for SWIG libfdt
......
#!/usr/bin/env python #!/usr/bin/env python2
# #
# Copyright (C) 2014, Masahiro Yamada <yamada.m@jp.panasonic.com> # Copyright (C) 2014, Masahiro Yamada <yamada.m@jp.panasonic.com>
# #
......
#!/usr/bin/env python #!/usr/bin/env python2
# Copyright (c) 2015 Stephen Warren # Copyright (c) 2015 Stephen Warren
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved. # Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
......
#!/usr/bin/env python #!/usr/bin/env python2
# #
# Copyright (c) 2012 The Chromium OS Authors. # Copyright (c) 2012 The Chromium OS Authors.
# #
......
#!/usr/bin/python #!/usr/bin/env python2
# #
# Copyright (C) 2016 Google, Inc # Copyright (C) 2016 Google, Inc
# Written by Simon Glass <sjg@chromium.org> # Written by Simon Glass <sjg@chromium.org>
......
#!/usr/bin/env python #!/usr/bin/env python2
# #
# Copyright (c) 2014 Google, Inc # Copyright (c) 2014 Google, Inc
# #
......
#!/usr/bin/env python #!/usr/bin/env python2
# #
# Copyright (c) 2011 The Chromium OS Authors. # Copyright (c) 2011 The Chromium OS Authors.
# #
......
#!/usr/bin/python #!/usr/bin/env python2
# Script to create enums from datasheet register tables # Script to create enums from datasheet register tables
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment