2017-11-08 03:09:11 +01:00
|
|
|
To eliminate an rpmlint error, the shebang for this script should be
|
2018-06-19 19:53:58 +02:00
|
|
|
changed to use python directly, rather than through env.
|
2017-11-08 03:09:11 +01:00
|
|
|
|
|
|
|
When openSUSE switches to Python3, the shebang below should be changed
|
|
|
|
to "#!/usr/bin/python3".
|
|
|
|
|
|
|
|
Larry Finger
|
|
|
|
|
2020-09-09 15:44:15 +02:00
|
|
|
Index: VirtualBox-6.1.14/src/VBox/Frontends/VBoxShell/vboxshell.py
|
2017-11-08 03:09:11 +01:00
|
|
|
===================================================================
|
2020-09-09 15:44:15 +02:00
|
|
|
--- VirtualBox-6.1.14.orig/src/VBox/Frontends/VBoxShell/vboxshell.py
|
|
|
|
+++ VirtualBox-6.1.14/src/VBox/Frontends/VBoxShell/vboxshell.py
|
2017-11-08 03:09:11 +01:00
|
|
|
@@ -1,4 +1,4 @@
|
|
|
|
-#!/usr/bin/env python
|
2018-06-19 19:53:58 +02:00
|
|
|
+#!/usr/bin/python3
|
2017-11-08 03:09:11 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2020-09-09 15:44:15 +02:00
|
|
|
# $Id: vboxshell.py $
|
2017-11-08 03:09:11 +01:00
|
|
|
|