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 2349E138359 for ; Thu, 10 Sep 2020 00:42:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE37BE093E; Thu, 10 Sep 2020 00:42:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 B6108E093E for ; Thu, 10 Sep 2020 00:42:24 +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 E0DBC340EEF for ; Thu, 10 Sep 2020 00:42:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 547C8357 for ; Thu, 10 Sep 2020 00:42:21 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1599698533.e4afb9b0edbef303dd0af6229c3a5791b2d6cd5b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/ispc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/ispc/ispc-1.14.0.ebuild X-VCS-Directories: dev-lang/ispc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e4afb9b0edbef303dd0af6229c3a5791b2d6cd5b X-VCS-Branch: master Date: Thu, 10 Sep 2020 00:42:21 +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: 09c79df0-5d18-4814-ae8f-07065734eedf X-Archives-Hash: b4388b7e68e67f57c5000aa5fe365951 commit: e4afb9b0edbef303dd0af6229c3a5791b2d6cd5b Author: Sam James gentoo org> AuthorDate: Thu Sep 10 00:40:50 2020 +0000 Commit: Sam James gentoo 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 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 }