forked from pool/virtualbox
245cab47c0
- Pseudo version bump to 6.1.13, which is NOT an Oracle release. Update VB sources to run under kernel 5.8.0+ with no modifications to the kernel. These sources are derived from r85883 of the Oracle svn repository. For operations with USB{2,3}, the extension pack for revision 140056 must be installed. Once Oracle releases 6.1.14, then the extension pack and VB itself will have the same revision number. File "fixes_for_5.8.patch" is removed as that part was fixed upstream. Fixes boo#1175201. OBS-URL: https://build.opensuse.org/request/show/830373 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=568
19 lines
651 B
Diff
19 lines
651 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-6.1.13/src/VBox/Frontends/VBoxShell/vboxshell.py
|
|
===================================================================
|
|
--- VirtualBox-6.1.13.orig/src/VBox/Frontends/VBoxShell/vboxshell.py
|
|
+++ VirtualBox-6.1.13/src/VBox/Frontends/VBoxShell/vboxshell.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
# $Id: vboxshell.py 82968 2020-02-04 10:35:17Z vboxsync $
|
|
|