diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2004-05-10 14:07:04 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2004-05-10 14:07:04 +0000 |
commit | 409f904024a68744332ea68ce004d83ea89b73f7 (patch) | |
tree | fc3619d77ce7250c91d6c924cdaceb33855e15ee /net-firewall/iptables | |
parent | Closing #46698 (Manifest recommit) (diff) | |
download | gentoo-2-409f904024a68744332ea68ce004d83ea89b73f7.tar.gz gentoo-2-409f904024a68744332ea68ce004d83ea89b73f7.tar.bz2 gentoo-2-409f904024a68744332ea68ce004d83ea89b73f7.zip |
Closing #44204.
Diffstat (limited to 'net-firewall/iptables')
-rw-r--r-- | net-firewall/iptables/ChangeLog | 5 | ||||
-rw-r--r-- | net-firewall/iptables/iptables-1.2.9-r1.ebuild | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/net-firewall/iptables/ChangeLog b/net-firewall/iptables/ChangeLog index 651799162958..054d65d43c71 100644 --- a/net-firewall/iptables/ChangeLog +++ b/net-firewall/iptables/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-firewall/iptables # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.24 2004/04/25 16:30:35 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.25 2004/05/10 14:07:04 aliz Exp $ + + 10 May 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.9-r1.ebuild: + CFLAGS must have -O flag, closing #44204 *iptables-1.2.9-r1 (25 Apr 2004) diff --git a/net-firewall/iptables/iptables-1.2.9-r1.ebuild b/net-firewall/iptables/iptables-1.2.9-r1.ebuild index fb91c4fb1711..2ea8956d9d4e 100644 --- a/net-firewall/iptables/iptables-1.2.9-r1.ebuild +++ b/net-firewall/iptables/iptables-1.2.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.2.9-r1.ebuild,v 1.2 2004/04/28 05:05:32 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.2.9-r1.ebuild,v 1.3 2004/05/10 14:07:04 aliz Exp $ inherit eutils flag-o-matic @@ -19,6 +19,10 @@ DEPEND="virtual/linux-sources" src_unpack() { replace-flags -O0 -O2 + if [ -z `get-flag O` ]; then + append-flags -O2 + fi + unpack ${A} ; cd ${S} epatch ${FILESDIR}/${PV}-files |