From e82b7e427da7d56a1bc42cc35797b2a3822b3974 Mon Sep 17 00:00:00 2001 From: ryang Date: Wed, 1 Aug 2018 09:15:31 -0400 Subject: [PATCH] qemu: Don't use chroot based env variables when running spice client We are running the Spice client installed on the host system. It doesn't need to be run with env variables that point to chroot libraries. --- pmb/qemu/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/qemu/run.py b/pmb/qemu/run.py index a8639557..8fe9f6fc 100644 --- a/pmb/qemu/run.py +++ b/pmb/qemu/run.py @@ -298,7 +298,7 @@ def run(args): output = "background" if spice_enabled else "interactive" process = pmb.helpers.run.user(args, qemu, output=output, env=env) if spice: - pmb.helpers.run.user(args, spice, env=env) + pmb.helpers.run.user(args, spice) except KeyboardInterrupt: # Don't show a trace when pressing ^C pass