From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A3EAD1384B4 for ; Wed, 16 Dec 2015 17:34:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94ED621C001; Wed, 16 Dec 2015 17:34:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2DB1A21C001 for ; Wed, 16 Dec 2015 17:34:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BA1D934016B for ; Wed, 16 Dec 2015 17:34:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD708A91 for ; Wed, 16 Dec 2015 17:34:31 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1450287435.77b83b512601cabd6160e39fc7dcff18c2660b11.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild X-VCS-Directories: net-p2p/litecoind/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 77b83b512601cabd6160e39fc7dcff18c2660b11 X-VCS-Branch: master Date: Wed, 16 Dec 2015 17:34:31 +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-Archives-Salt: 1a515874-41d5-4fc2-9ef4-22c9331f388d X-Archives-Hash: d4b8d5573faf60eba066c589acf428a0 commit: 77b83b512601cabd6160e39fc7dcff18c2660b11 Author: Anthony G. Basile gentoo org> AuthorDate: Wed Dec 16 17:37:15 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Dec 16 17:37:15 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77b83b51 net-p2p/litecoind: fix executable GNU stack. Package-Manager: portage-2.2.24 net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild b/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild index 9c14a51..c7f7068 100644 --- a/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild +++ b/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild @@ -6,7 +6,7 @@ EAPI=5 DB_VER="4.8" -inherit autotools db-use eutils systemd user +inherit autotools db-use eutils flag-o-matic systemd user MyPV="${PV/_/-}" MyPN="litecoin" @@ -51,6 +51,9 @@ src_prepare() { } src_configure() { + # To avoid executable GNU stack. + append-ldflags -Wl,-z,noexecstack + local my_econf= if use upnp; then my_econf="${my_econf} --with-miniupnpc --enable-upnp-default"