Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1 | From 3b9b0f82c33f793a14d44bf06b6c8136bc3fc4bf Mon Sep 17 00:00:00 2001 |
| 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> |
| 3 | Date: Thu, 27 Apr 2017 16:48:42 +0300 |
| 4 | Subject: [PATCH] Switch utils/kconfig-diff to use Python 3 |
| 5 | |
| 6 | The script supports it, but continues to refer to 2.x in shebang. |
| 7 | |
| 8 | Upstream-Status: Pending |
| 9 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> |
| 10 | --- |
| 11 | utils/kconfig-diff | 2 +- |
| 12 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 13 | |
| 14 | diff --git a/utils/kconfig-diff b/utils/kconfig-diff |
| 15 | index 0db267d..19189f3 100755 |
| 16 | --- a/utils/kconfig-diff |
| 17 | +++ b/utils/kconfig-diff |
| 18 | @@ -1,4 +1,4 @@ |
| 19 | -#!/usr/bin/python |
| 20 | +#!/usr/bin/env python3 |
| 21 | # |
| 22 | # diffconfig - a tool to compare .config files. |
| 23 | # |
| 24 | -- |
| 25 | 2.11.0 |
| 26 | |