Gentoo Archives: gentoo-commits

From: "罗百科" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/rdma-core/
Date: Wed, 01 Sep 2021 05:09:28
Message-Id: 1630472958.8c71395e3432540062d86a31c533c74cbd137dab.patrick@gentoo
1 commit: 8c71395e3432540062d86a31c533c74cbd137dab
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 1 05:08:54 2021 +0000
4 Commit: 罗百科 <patrick <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 1 05:09:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c71395e
7
8 sys-cluster/rdma-core: Fix src_install
9
10 Double slash from EPREFIX and get_udevdir trip up build system.
11 Remove separator slash as get_udevdir is an absolute path, so it
12 should always have a leading slash.
13
14 Bug: https://bugs.gentoo.org/811264
15 Package-Manager: Portage-3.0.22, Repoman-3.0.3
16 Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
17
18 sys-cluster/rdma-core/rdma-core-36.0.ebuild | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21 diff --git a/sys-cluster/rdma-core/rdma-core-36.0.ebuild b/sys-cluster/rdma-core/rdma-core-36.0.ebuild
22 index 0dd9257112e..8d147a1e6f0 100644
23 --- a/sys-cluster/rdma-core/rdma-core-36.0.ebuild
24 +++ b/sys-cluster/rdma-core/rdma-core-36.0.ebuild
25 @@ -68,7 +68,7 @@ src_configure() {
26 -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}"/etc
27 -DCMAKE_INSTALL_RUNDIR=/run
28 -DCMAKE_INSTALL_SHAREDSTATEDIR=/var/lib
29 - -DCMAKE_INSTALL_UDEV_RULESDIR="${EPREFIX}"/"$(get_udevdir)"/rules.d
30 + -DCMAKE_INSTALL_UDEV_RULESDIR="${EPREFIX}""$(get_udevdir)"/rules.d
31 -DCMAKE_INSTALL_SYSTEMD_SERVICEDIR="$(systemd_get_systemunitdir)"
32 -DCMAKE_DISABLE_FIND_PACKAGE_pandoc=yes
33 $(ver_test -ge 25 && echo -DCMAKE_DISABLE_FIND_PACKAGE_rst2man=yes)