pkgsrc/sysutils/virt-manager/patches/patch-src_virt-manager-tui.in
gls 5e6e02b24b Add virt-manager version 0.9.4 to the NetBSD packages collection.
The "Virtual Machine Manager" application (virt-manager for short package name)
is a desktop user interface for managing virtual machines. It presents a
summary view of running domains, their live performance & resource utilization
statistics. The detailed view graphs performance & utilization over time.
Wizards enable the creation of new domains, and configuration & adjustment of a
domain's resource allocation & virtual hardware. An embedded VNC client viewer
presents a full graphical console to the guest domain.
2012-09-05 21:15:16 +00:00

11 lines
369 B
Text

$NetBSD: patch-src_virt-manager-tui.in,v 1.1 2012/09/05 21:15:16 gls Exp $
Do not hardcode "python" interpreter, use PYTHONBIN instead.
--- src/virt-manager-tui.in.orig 2012-07-29 20:20:46.000000000 +0000
+++ src/virt-manager-tui.in
@@ -1,3 +1,3 @@
#!/bin/sh
-exec python "::PYTHONDIR::/::PACKAGE::.py" "$@"
+exec @@PYTHONBIN@@ "::PYTHONDIR::/::PACKAGE::.py" "$@"