diff options
author | Daniel M. Weeks <dan@danweeks.net> | 2020-07-09 00:30:30 -0400 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2020-07-09 20:31:58 +0300 |
commit | 51c32bc73cde578ebf2e2fe367aed69290a1108c (patch) | |
tree | 5ad86d85ad60d93f8a0153a5b7ff37e23364a998 /sys-cluster/rdma-core/rdma-core-9999.ebuild | |
parent | x11-drivers/nvidia-drivers: Install supported-gpus.json (diff) | |
download | gentoo-51c32bc73cde578ebf2e2fe367aed69290a1108c.tar.gz gentoo-51c32bc73cde578ebf2e2fe367aed69290a1108c.tar.bz2 gentoo-51c32bc73cde578ebf2e2fe367aed69290a1108c.zip |
sys-cluster/rdma-core: Fix default RUNDIR
Build system logic relies on user (ebuild) setting CMAKE_INSTALL_RUNDIR
*not* CMAKE_INSTALL_FULL_RUNDIR. A default CMAKE_INSTALL_RUNDIR will
always be appended to prefix.
Closes: https://bugs.gentoo.org/731808
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Daniel M. Weeks <dan@danweeks.net>
Closes: https://github.com/gentoo/gentoo/pull/16643
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'sys-cluster/rdma-core/rdma-core-9999.ebuild')
-rw-r--r-- | sys-cluster/rdma-core/rdma-core-9999.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-cluster/rdma-core/rdma-core-9999.ebuild b/sys-cluster/rdma-core/rdma-core-9999.ebuild index a8c381b38698..fae3876a639c 100644 --- a/sys-cluster/rdma-core/rdma-core-9999.ebuild +++ b/sys-cluster/rdma-core/rdma-core-9999.ebuild @@ -64,7 +64,7 @@ pkg_setup() { src_configure() { local mycmakeargs=( -DCMAKE_INSTALL_SYSCONFDIR=/etc - -DCMAKE_INSTALL_FULL_RUNDIR=/run + -DCMAKE_INSTALL_RUNDIR=/run -DCMAKE_INSTALL_SHAREDSTATEDIR=/var/lib -DCMAKE_INSTALL_UDEV_RULESDIR="$(get_udevdir)"/rules.d -DCMAKE_INSTALL_SYSTEMD_SERVICEDIR="$(systemd_get_systemunitdir)" |