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 E0DC4138334 for ; Tue, 17 Dec 2019 16:36:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F8A2E0877; Tue, 17 Dec 2019 16:36:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 17FC8E0877 for ; Tue, 17 Dec 2019 16:36:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 058B634D9D6 for ; Tue, 17 Dec 2019 16:36:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3A5B8C6 for ; Tue, 17 Dec 2019 16:36:13 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1576600536.c649fe7b4e80a8bee1928b164ab9a3ea1410215d.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xen/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/xen/xen-4.12.1-r4.ebuild app-emulation/xen/xen-4.13.0_rc4.ebuild X-VCS-Directories: app-emulation/xen/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: c649fe7b4e80a8bee1928b164ab9a3ea1410215d X-VCS-Branch: master Date: Tue, 17 Dec 2019 16:36:13 +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: eeb76178-35ef-4244-849c-95b0f0c8df34 X-Archives-Hash: fcde812e5954a2dc7b5fe89cba226cd0 commit: c649fe7b4e80a8bee1928b164ab9a3ea1410215d Author: Tomas Mozes gmail com> AuthorDate: Mon Dec 16 08:51:21 2019 +0000 Commit: Yixun Lan gentoo org> CommitDate: Tue Dec 17 16:35:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c649fe7b app-emulation/xen: fix efi path Closes: https://bugs.gentoo.org/703050 Closes: https://github.com/gentoo/gentoo/pull/13996 Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: Tomáš Mózes gmail.com> Signed-off-by: Yixun Lan gentoo.org> app-emulation/xen/xen-4.12.1-r4.ebuild | 4 ++-- app-emulation/xen/xen-4.13.0_rc4.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-emulation/xen/xen-4.12.1-r4.ebuild b/app-emulation/xen/xen-4.12.1-r4.ebuild index 3ee8dd94a9c..a2e48e0d111 100644 --- a/app-emulation/xen/xen-4.12.1-r4.ebuild +++ b/app-emulation/xen/xen-4.12.1-r4.ebuild @@ -105,7 +105,7 @@ src_prepare() { if use efi; then export EFI_VENDOR="gentoo" - export EFI_MOUNTPOINT="boot" + export EFI_MOUNTPOINT="/boot" fi default @@ -148,7 +148,7 @@ pkg_postinst() { elog "Official Xen Guide:" elog " https://wiki.gentoo.org/wiki/Xen" - use efi && einfo "The efi executable is installed in boot/efi/gentoo" + use efi && einfo "The efi executable is installed in /boot/efi/gentoo" elog "You can optionally block the installation of /boot/xen-syms by an entry" elog "in folder /etc/portage/env using the portage's feature INSTALL_MASK" diff --git a/app-emulation/xen/xen-4.13.0_rc4.ebuild b/app-emulation/xen/xen-4.13.0_rc4.ebuild index c18edd05ce4..334affd09a8 100644 --- a/app-emulation/xen/xen-4.13.0_rc4.ebuild +++ b/app-emulation/xen/xen-4.13.0_rc4.ebuild @@ -106,7 +106,7 @@ src_prepare() { if use efi; then export EFI_VENDOR="gentoo" - export EFI_MOUNTPOINT="boot" + export EFI_MOUNTPOINT="/boot" fi default @@ -147,7 +147,7 @@ pkg_postinst() { elog "Official Xen Guide:" elog " https://wiki.gentoo.org/wiki/Xen" - use efi && einfo "The efi executable is installed in boot/efi/gentoo" + use efi && einfo "The efi executable is installed in /boot/efi/gentoo" elog "You can optionally block the installation of /boot/xen-syms by an entry" elog "in folder /etc/portage/env using the portage's feature INSTALL_MASK"