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 247ED138359 for ; Sun, 22 Nov 2020 04:41:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D2F5E05C1; Sun, 22 Nov 2020 04:41:47 +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 2DD8CE05C1 for ; Sun, 22 Nov 2020 04:41:47 +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 C50F0340E63 for ; Sun, 22 Nov 2020 04:41:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1236242C for ; Sun, 22 Nov 2020 04:41:44 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1606020063.56472352c2014c9013b9788817f5cab8f673b435.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/HDF5Plugin-Zstandard/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild X-VCS-Directories: sci-libs/HDF5Plugin-Zstandard/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 56472352c2014c9013b9788817f5cab8f673b435 X-VCS-Branch: master Date: Sun, 22 Nov 2020 04:41:44 +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: 1bcc9948-c5f0-4521-8aa3-a8c3df597960 X-Archives-Hash: d6decdd3dba8073c74c2db136d3e208f commit: 56472352c2014c9013b9788817f5cab8f673b435 Author: Aisha Tammy aisha cc> AuthorDate: Sun Nov 22 04:41:03 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Sun Nov 22 04:41:03 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=56472352 sci-libs/HDF5Plugin-Zstandard: fix libdir in plugin path Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> .../HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild b/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild index 8c8d889cb..ab1a155c3 100644 --- a/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild +++ b/sci-libs/HDF5Plugin-Zstandard/HDF5Plugin-Zstandard-0_pre20201121.ebuild @@ -21,13 +21,13 @@ S=${WORKDIR}/${PN}-${COMMIT} src_configure() { local mycmakeargs=( - -DPLUGIN_INSTALL_PATH="${EPREFIX}/usr/lib64/hdf5/plugin" + -DPLUGIN_INSTALL_PATH="${EPREFIX}/usr/$(get_libdir)/hdf5/plugin" ) cmake_src_configure } src_install() { - echo "HDF5_PLUGIN_PATH=${EPREFIX}/usr/lib64/hdf5/plugin" >> 99h5zstd || die + echo "HDF5_PLUGIN_PATH=${EPREFIX}/usr/$(get_libdir)/hdf5/plugin" >> 99h5zstd || die doenvd 99h5zstd cmake_src_install }