From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8EC65139335 for ; Wed, 30 Jun 2021 04:48:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B37B4E078A; Wed, 30 Jun 2021 04:48:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94F22E078A for ; Wed, 30 Jun 2021 04:48:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F73433BEA6 for ; Wed, 30 Jun 2021 04:48:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C772744 for ; Wed, 30 Jun 2021 04:48:05 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1625027969.41765dab645acb31174d787d8d7c4288ae8bce18.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/lxd/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/lxd/lxd-4.0.6.ebuild X-VCS-Directories: app-emulation/lxd/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 41765dab645acb31174d787d8d7c4288ae8bce18 X-VCS-Branch: master Date: Wed, 30 Jun 2021 04:48:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 42cf49f9-bfda-4536-a713-164ae66b3219 X-Archives-Hash: 518ccd2cb6cc88c63f29d3f9186735a9 commit: 41765dab645acb31174d787d8d7c4288ae8bce18 Author: Benedikt Neuffer itfriend de> AuthorDate: Sun Jun 27 14:55:09 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Jun 30 04:39:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41765dab app-emulation/lxd: fix virtfs-proxy-helper path Closes: https://bugs.gentoo.org/798924 Signed-off-by: Joonas Niilola gentoo.org> app-emulation/lxd/lxd-4.0.6.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-emulation/lxd/lxd-4.0.6.ebuild b/app-emulation/lxd/lxd-4.0.6.ebuild index e701c89b199..92c4ad7891d 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() { :; }