commit: e4afb9b0edbef303dd0af6229c3a5791b2d6cd5b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 10 00:40:50 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 10 00:42:13 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4afb9b0
dev-lang/ispc: set CMAKE_SKIP_RPATH
An empty (but defined) DT_RUNPATH is a common
security vulnerability. Best to not expose it
if it's unnecessary.
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-lang/ispc/ispc-1.14.0.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-lang/ispc/ispc-1.14.0.ebuild b/dev-lang/ispc/ispc-1.14.0.ebuild
index f5ecbcdb7ea..d3dac5179e7 100644
--- a/dev-lang/ispc/ispc-1.14.0.ebuild
+++ b/dev-lang/ispc/ispc-1.14.0.ebuild
@@ -45,6 +45,7 @@ PATCHES=(
src_configure() {
local mycmakeargs=(
"-DARM_ENABLED=$(usex arm)"
+ "-DCMAKE_SKIP_RPATH=ON"
)
cmake_src_configure
}