forked from pool/virtualbox
99fd246c75
Version bump to 7.0.12. Several CVE vulnerabilities fixed. OBS-URL: https://build.opensuse.org/request/show/1118617 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=712
19 lines
615 B
Diff
19 lines
615 B
Diff
To eliminate an rpmlint error, the shebang for this script should be
|
|
changed to use python directly, rather than through env.
|
|
|
|
When openSUSE switches to Python3, the shebang below should be changed
|
|
to "#!/usr/bin/python3".
|
|
|
|
Larry Finger
|
|
|
|
Index: VirtualBox-7.0.12/src/VBox/Frontends/VBoxShell/vboxshell.py
|
|
===================================================================
|
|
--- VirtualBox-7.0.12.orig/src/VBox/Frontends/VBoxShell/vboxshell.py
|
|
+++ VirtualBox-7.0.12/src/VBox/Frontends/VBoxShell/vboxshell.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
# $Id: vboxshell.py $
|
|
|