diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2018-03-30 23:48:07 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-01 07:53:58 +0200 |
commit | 1490558b75f2d28fdf11745a1977872b33d82b98 (patch) | |
tree | ff16aa5084e26078a2a175b7781f29e44d900448 | |
parent | b28d77789a4ba327532674efd6250b8634a99feb (diff) | |
download | buildroot-1490558b75f2d28fdf11745a1977872b33d82b98.tar.gz buildroot-1490558b75f2d28fdf11745a1977872b33d82b98.zip |
utils/scanpypi: don't hardcode python2
Commit 3a0c20c5309b (scanpypi: add support for Python3) adapted the script
to work with python 3.x, but the shebang still said python2 making it
unlikely to work on systems without python 2.x.
Change it to just 'python' instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rwxr-xr-x | utils/scanpypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/scanpypi b/utils/scanpypi index 505ba0a246..df8939b82e 100755 --- a/utils/scanpypi +++ b/utils/scanpypi @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python """ Utility for building Buildroot packages for existing PyPI packages |