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 26C03138334 for ; Thu, 15 Aug 2019 17:30:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40042E0C4E; Thu, 15 Aug 2019 17:30:01 +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 1F1E0E0C4E for ; Thu, 15 Aug 2019 17:30:01 +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 E9DEA349BE3 for ; Thu, 15 Aug 2019 17:29:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 381164D4 for ; Thu, 15 Aug 2019 17:29:58 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1565890190.d90cf6ebbd0bc920ac0a161119cf22a761f39d25.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rocminfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rocminfo/rocminfo-2.6.0.ebuild X-VCS-Directories: dev-util/rocminfo/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: d90cf6ebbd0bc920ac0a161119cf22a761f39d25 X-VCS-Branch: master Date: Thu, 15 Aug 2019 17:29:58 +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: fec91328-20f4-4a44-8268-5170ef58821f X-Archives-Hash: 7b2873dc677a355ded4c52e145f05d9e commit: d90cf6ebbd0bc920ac0a161119cf22a761f39d25 Author: Craig Andrews gentoo org> AuthorDate: Thu Aug 15 17:26:03 2019 +0000 Commit: Craig Andrews gentoo org> CommitDate: Thu Aug 15 17:29:50 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d90cf6eb dev-util/rocminfo: Fix ROCR_LIB_DIR Closes: https://bugs.gentoo.org/6922382 Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Craig Andrews gentoo.org> dev-util/rocminfo/rocminfo-2.6.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/rocminfo/rocminfo-2.6.0.ebuild b/dev-util/rocminfo/rocminfo-2.6.0.ebuild index 9d2f7d5e0eb..31ca101fc69 100644 --- a/dev-util/rocminfo/rocminfo-2.6.0.ebuild +++ b/dev-util/rocminfo/rocminfo-2.6.0.ebuild @@ -30,7 +30,7 @@ src_configure() { local mycmakeargs=( -DROCM_DIR="${ESYSROOT}/usr" -DROCR_INC_DIR="${ESYSROOT}/usr/include" - -DROCR_LIB_DIR="${EPREFIX}/usr/$(get_libdir)/hsa" + -DROCR_LIB_DIR="${EPREFIX}/usr/$(get_libdir)" ) cmake-utils_src_configure }