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 99F5D13835A for ; Tue, 15 Jun 2021 05:28:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4963E0867; Tue, 15 Jun 2021 05:28:36 +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 832DEE0867 for ; Tue, 15 Jun 2021 05:28:36 +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 67BF3340E9B for ; Tue, 15 Jun 2021 05:28:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1702C7A4 for ; Tue, 15 Jun 2021 05:28:34 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1623734840.85bf86f0ee5b866e8e67271ff283e933368148af.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/hwloc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/hwloc/hwloc-1.11.13.ebuild sys-apps/hwloc/hwloc-2.3.0.ebuild sys-apps/hwloc/hwloc-2.5.0.ebuild X-VCS-Directories: sys-apps/hwloc/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 85bf86f0ee5b866e8e67271ff283e933368148af X-VCS-Branch: master Date: Tue, 15 Jun 2021 05:28:34 +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: 9fb25f28-7c3d-4a3e-9310-3d24d51d7dd4 X-Archives-Hash: 30ee62c9a3d15061b99104f58e89c126 commit: 85bf86f0ee5b866e8e67271ff283e933368148af Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Jun 15 05:25:51 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Jun 15 05:27:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85bf86f0 sys-apps/hwloc: EPREFIX -> ESYSROOT for cuda Signed-off-by: Georgy Yakovlev gentoo.org> sys-apps/hwloc/hwloc-1.11.13.ebuild | 6 +++--- sys-apps/hwloc/hwloc-2.3.0.ebuild | 6 +++--- sys-apps/hwloc/hwloc-2.5.0.ebuild | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/sys-apps/hwloc/hwloc-1.11.13.ebuild b/sys-apps/hwloc/hwloc-1.11.13.ebuild index f9b7aae544d..151384ff11a 100644 --- a/sys-apps/hwloc/hwloc-1.11.13.ebuild +++ b/sys-apps/hwloc/hwloc-1.11.13.ebuild @@ -43,8 +43,8 @@ src_prepare() { eautoreconf if use cuda ; then - append-cflags -I"${EPREFIX}"/opt/cuda/include - append-cppflags -I"${EPREFIX}"/opt/cuda/include + append-cflags -I"${ESYSROOT}"/opt/cuda/include + append-cppflags -I"${ESYSROOT}"/opt/cuda/include fi } @@ -53,7 +53,7 @@ multilib_src_configure() { if use cuda ; then local -x LDFLAGS="${LDFLAGS}" - append-ldflags -L"${EPREFIX}"/opt/cuda/$(get_libdir) + append-ldflags -L"${ESYSROOT}"/opt/cuda/$(get_libdir) fi ECONF_SOURCE=${S} econf \ diff --git a/sys-apps/hwloc/hwloc-2.3.0.ebuild b/sys-apps/hwloc/hwloc-2.3.0.ebuild index 6756f4000ac..f98a08eb4cd 100644 --- a/sys-apps/hwloc/hwloc-2.3.0.ebuild +++ b/sys-apps/hwloc/hwloc-2.3.0.ebuild @@ -48,8 +48,8 @@ src_prepare() { eautoreconf if use cuda ; then - append-cflags "-I${EPREFIX}/opt/cuda/include" - append-cppflags "-I${EPREFIX}/opt/cuda/include" + append-cflags "-I${ESYSROOT}/opt/cuda/include" + append-cppflags "-I${ESYSROOT}/opt/cuda/include" fi } @@ -58,7 +58,7 @@ multilib_src_configure() { if use cuda ; then local -x LDFLAGS="${LDFLAGS}" - append-ldflags "-L${EPREFIX}/opt/cuda/$(get_libdir)" + append-ldflags "-L${ESYSROOT}/opt/cuda/$(get_libdir)" fi local myconf=( diff --git a/sys-apps/hwloc/hwloc-2.5.0.ebuild b/sys-apps/hwloc/hwloc-2.5.0.ebuild index 6756f4000ac..f98a08eb4cd 100644 --- a/sys-apps/hwloc/hwloc-2.5.0.ebuild +++ b/sys-apps/hwloc/hwloc-2.5.0.ebuild @@ -48,8 +48,8 @@ src_prepare() { eautoreconf if use cuda ; then - append-cflags "-I${EPREFIX}/opt/cuda/include" - append-cppflags "-I${EPREFIX}/opt/cuda/include" + append-cflags "-I${ESYSROOT}/opt/cuda/include" + append-cppflags "-I${ESYSROOT}/opt/cuda/include" fi } @@ -58,7 +58,7 @@ multilib_src_configure() { if use cuda ; then local -x LDFLAGS="${LDFLAGS}" - append-ldflags "-L${EPREFIX}/opt/cuda/$(get_libdir)" + append-ldflags "-L${ESYSROOT}/opt/cuda/$(get_libdir)" fi local myconf=(