commit: 77b83b512601cabd6160e39fc7dcff18c2660b11
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 16 17:37:15 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> 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"