diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-03-28 23:04:02 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-03-28 23:04:02 +0000 |
commit | 026a3c007f6df57e6d5bffe2073e5509def79b3d (patch) | |
tree | 65eb64a8d02aa6d18ecec3272186f78bc8d4991e /net-firewall | |
parent | initial version (#84070) (diff) | |
download | gentoo-2-026a3c007f6df57e6d5bffe2073e5509def79b3d.tar.gz gentoo-2-026a3c007f6df57e6d5bffe2073e5509def79b3d.tar.bz2 gentoo-2-026a3c007f6df57e6d5bffe2073e5509def79b3d.zip |
Use proper toolchain compiler.
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-firewall')
-rw-r--r-- | net-firewall/iptables/ChangeLog | 6 | ||||
-rw-r--r-- | net-firewall/iptables/iptables-1.2.11-r3.ebuild | 6 | ||||
-rw-r--r-- | net-firewall/iptables/iptables-1.3.1-r1.ebuild | 6 |
3 files changed, 13 insertions, 5 deletions
diff --git a/net-firewall/iptables/ChangeLog b/net-firewall/iptables/ChangeLog index f354998056a0..baddfe254c3a 100644 --- a/net-firewall/iptables/ChangeLog +++ b/net-firewall/iptables/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-firewall/iptables # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.61 2005/03/28 00:08:57 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.62 2005/03/28 23:04:01 eradicator Exp $ + + 28 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org> + iptables-1.2.11-r3.ebuild, iptables-1.3.1-r1.ebuild: + Use proper toolchain compiler. 28 Mar 2005; Daniel Black <dragonheart@gentoo.org> iptables-1.3.1-r1.ebuild, iptables-1.3.1.ebuild: diff --git a/net-firewall/iptables/iptables-1.2.11-r3.ebuild b/net-firewall/iptables/iptables-1.2.11-r3.ebuild index d93d6ec305d5..40f9da268675 100644 --- a/net-firewall/iptables/iptables-1.2.11-r3.ebuild +++ b/net-firewall/iptables/iptables-1.2.11-r3.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.2.11-r3.ebuild,v 1.12 2005/03/09 10:16:31 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.2.11-r3.ebuild,v 1.13 2005/03/28 23:04:01 eradicator Exp $ -inherit eutils flag-o-matic +inherit eutils flag-o-matic toolchain-funcs #extensions versions @@ -87,6 +87,7 @@ src_compile() { MANDIR=/usr/share/man \ INCDIR=/usr/include \ KERNEL_DIR=/usr/src/linux \ + CC="$(tc-getCC)" \ || die "Please check http://cvs.iptables.org/patch-o-matic-ng/updates/ if your kernel needs to be patched for iptables" else make COPT_FLAGS="${CFLAGS}" ${myconf} \ @@ -96,6 +97,7 @@ src_compile() { MANDIR=/usr/share/man \ INCDIR=/usr/include \ KERNEL_DIR=/usr \ + CC="$(tc-getCC)" \ || die fi } diff --git a/net-firewall/iptables/iptables-1.3.1-r1.ebuild b/net-firewall/iptables/iptables-1.3.1-r1.ebuild index ff55829544f9..460109c1ebda 100644 --- a/net-firewall/iptables/iptables-1.3.1-r1.ebuild +++ b/net-firewall/iptables/iptables-1.3.1-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.3.1-r1.ebuild,v 1.2 2005/03/28 00:08:57 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.3.1-r1.ebuild,v 1.3 2005/03/28 23:04:02 eradicator Exp $ -inherit eutils flag-o-matic +inherit eutils flag-o-matic toolchain-funcs #extensions versions @@ -117,10 +117,12 @@ src_compile() { make COPT_FLAGS="${CFLAGS}" ${myconf} \ KERNEL_DIR=/usr/src/linux \ + CC="$(tc-getCC)" \ || die "${diemsg}" else make COPT_FLAGS="${CFLAGS}" ${myconf} \ KERNEL_DIR=/usr \ + CC="$(tc-getCC)" \ || die fi } |