Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/ispc/
Date: Thu, 10 Sep 2020 00:42:27
Message-Id: 1599698533.e4afb9b0edbef303dd0af6229c3a5791b2d6cd5b.sam@gentoo
1 commit: e4afb9b0edbef303dd0af6229c3a5791b2d6cd5b
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 10 00:40:50 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 10 00:42:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4afb9b0
7
8 dev-lang/ispc: set CMAKE_SKIP_RPATH
9
10 An empty (but defined) DT_RUNPATH is a common
11 security vulnerability. Best to not expose it
12 if it's unnecessary.
13
14 Package-Manager: Portage-3.0.4, Repoman-3.0.1
15 Signed-off-by: Sam James <sam <AT> gentoo.org>
16
17 dev-lang/ispc/ispc-1.14.0.ebuild | 1 +
18 1 file changed, 1 insertion(+)
19
20 diff --git a/dev-lang/ispc/ispc-1.14.0.ebuild b/dev-lang/ispc/ispc-1.14.0.ebuild
21 index f5ecbcdb7ea..d3dac5179e7 100644
22 --- a/dev-lang/ispc/ispc-1.14.0.ebuild
23 +++ b/dev-lang/ispc/ispc-1.14.0.ebuild
24 @@ -45,6 +45,7 @@ PATCHES=(
25 src_configure() {
26 local mycmakeargs=(
27 "-DARM_ENABLED=$(usex arm)"
28 + "-DCMAKE_SKIP_RPATH=ON"
29 )
30 cmake_src_configure
31 }