diff options
author | 2013-04-27 17:45:54 +0000 | |
---|---|---|
committer | 2013-04-27 17:45:54 +0000 | |
commit | 915a2f27cd9b9f8932a0e0d33cfc8144b2cb6106 (patch) | |
tree | 531fa72eda2282b27691f8a9f5c3b9843e8aff45 /net-firewall | |
parent | Update bit. Patch by Nikoli. (diff) | |
download | gentoo-2-915a2f27cd9b9f8932a0e0d33cfc8144b2cb6106.tar.gz gentoo-2-915a2f27cd9b9f8932a0e0d33cfc8144b2cb6106.tar.bz2 gentoo-2-915a2f27cd9b9f8932a0e0d33cfc8144b2cb6106.zip |
Export AR to avoid `ar` usage #444282 by Agostino Sarubbo.
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'net-firewall')
-rw-r--r-- | net-firewall/iptables/ChangeLog | 5 | ||||
-rw-r--r-- | net-firewall/iptables/iptables-1.4.17.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/net-firewall/iptables/ChangeLog b/net-firewall/iptables/ChangeLog index 8cb5e15fc122..8ed3be66d382 100644 --- a/net-firewall/iptables/ChangeLog +++ b/net-firewall/iptables/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-firewall/iptables # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.289 2013/04/27 17:29:09 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.290 2013/04/27 17:45:54 vapier Exp $ + + 27 Apr 2013; Mike Frysinger <vapier@gentoo.org> iptables-1.4.17.ebuild: + Export AR to avoid `ar` usage #444282 by Agostino Sarubbo. 27 Apr 2013; Mike Frysinger <vapier@gentoo.org> files/iptables-1.4.13-r1.init: Add a "check" option and use it before reloading in case the rules are broken diff --git a/net-firewall/iptables/iptables-1.4.17.ebuild b/net-firewall/iptables/iptables-1.4.17.ebuild index 3d15ff97517e..3d62cf239e92 100644 --- a/net-firewall/iptables/iptables-1.4.17.ebuild +++ b/net-firewall/iptables/iptables-1.4.17.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.17.ebuild,v 1.2 2012/12/30 23:11:07 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.17.ebuild,v 1.3 2013/04/27 17:45:54 vapier Exp $ EAPI="4" @@ -36,6 +36,9 @@ src_prepare() { } src_configure() { + # Some libs use $(AR) rather than libtool to build #444282 + tc-export AR + sed -i \ -e "/nfnetlink=[01]/s:=[01]:=$(usex netlink 1 0):" \ configure || die |