diff options
author | Benedikt Neuffer <gentoo@itfriend.de> | 2021-06-27 16:55:09 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-06-30 07:39:29 +0300 |
commit | 41765dab645acb31174d787d8d7c4288ae8bce18 (patch) | |
tree | 4016cdbccecf811182aadc35d9a04072aa49e4b9 /app-emulation | |
parent | net-analyzer/fprobe: amd64 stable (diff) | |
download | gentoo-41765dab645acb31174d787d8d7c4288ae8bce18.tar.gz gentoo-41765dab645acb31174d787d8d7c4288ae8bce18.tar.bz2 gentoo-41765dab645acb31174d787d8d7c4288ae8bce18.zip |
app-emulation/lxd: fix virtfs-proxy-helper path
Closes: https://bugs.gentoo.org/798924
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/lxd/lxd-4.0.6.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app-emulation/lxd/lxd-4.0.6.ebuild b/app-emulation/lxd/lxd-4.0.6.ebuild index e701c89b199a..92c4ad7891d6 100644 --- a/app-emulation/lxd/lxd-4.0.6.ebuild +++ b/app-emulation/lxd/lxd-4.0.6.ebuild @@ -82,6 +82,11 @@ src_prepare() { doc/environment.md \ lxd/apparmor/instance_qemu.go \ lxd/instance/drivers/driver_qemu.go || die "Failed to fix hardcoded ovmf paths." + + # Fix hardcoded virtfs-proxy-helper file path, see bug 798924 + sed -i \ + -e "s:/usr/lib/qemu/virtfs-proxy-helper:/usr/libexec/virtfs-proxy-helper:g" \ + lxd/device/disk.go || die "Failed to fix virtfs-proxy-helper path." } src_configure() { :; } |