forked from pool/virtualbox
037ec0118a
- Remove symbols that forced rebuild of initrd - Version update to 6.1.14 (released September 04 2020 by Oracle) File "fix_virtio_build.patch" is added to fix a build problem. This is a maintenance release. The following items were fixed and/or added: GUI: Fixes file name changes in the File location field when creating Virtual Hard Disk (bug #19286) VMM: Fixed running VMs which failed to start with VERR_NEM_MISSING_KERNEL_API_2 when Hyper-V is used (bug #19779 and #19804) Audio: fix regression in HDA emulation introduced in 6.1.0 Shared Clipboard: Fixed a potential crash when copying HTML data (6.1.2 regression; bug #19226) Linux host and guest: Linux kernel version 5.8 support EFI: Fixed reading ISO9660 filesystems on attached media (6.1.0 regression; bug #19682) EFI: Support booting from drives attached to the LsiLogic SCSI and SAS controller emulations OBS-URL: https://build.opensuse.org/request/show/833132 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=570
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-6.1.14/src/VBox/Frontends/VBoxShell/vboxshell.py
|
|
===================================================================
|
|
--- VirtualBox-6.1.14.orig/src/VBox/Frontends/VBoxShell/vboxshell.py
|
|
+++ VirtualBox-6.1.14/src/VBox/Frontends/VBoxShell/vboxshell.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
# $Id: vboxshell.py $
|
|
|