From: Andy Shevchenko Date: Wed, 9 Dec 2020 11:50:17 +0000 (+0200) Subject: scripts: switch explicitly to Python 3 X-Git-Tag: v5.10.79~4294 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=090466aeb6a039d24a8f05415f1bdf91330635a4;p=platform%2Fkernel%2Flinux-rpi.git scripts: switch explicitly to Python 3 commit 51839e29cb5954470ea4db7236ef8c3d77a6e0bb upstream. Some distributions are about to switch to Python 3 support only. This means that /usr/bin/python, which is Python 2, is not available anymore. Hence, switch scripts to use Python 3 explicitly. Signed-off-by: Andy Shevchenko Signed-off-by: Masahiro Yamada Signed-off-by: Greg Kroah-Hartman --- diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter index 652e954..dcd8d87 100755 --- a/scripts/bloat-o-meter +++ b/scripts/bloat-o-meter @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Copyright 2004 Matt Mackall # diff --git a/scripts/diffconfig b/scripts/diffconfig index 627eba5..d5da5fa 100755 --- a/scripts/diffconfig +++ b/scripts/diffconfig @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # SPDX-License-Identifier: GPL-2.0 # # diffconfig - a tool to compare .config files.