diff options
author | Ned Ludd <solar@gentoo.org> | 2008-05-09 20:54:09 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2008-05-09 20:54:09 +0000 |
commit | e470b8c2131a87f2cde9cc443f89372bd103a28b (patch) | |
tree | b4e577e80520afd7c44179738371ad3785bdf608 /sys-apps/paxctl | |
parent | stable x86, bug 220191 (diff) | |
download | gentoo-2-e470b8c2131a87f2cde9cc443f89372bd103a28b.tar.gz gentoo-2-e470b8c2131a87f2cde9cc443f89372bd103a28b.tar.bz2 gentoo-2-e470b8c2131a87f2cde9cc443f89372bd103a28b.zip |
- make sure we can cross compile
(Portage version: 2.1.4.4)
Diffstat (limited to 'sys-apps/paxctl')
-rw-r--r-- | sys-apps/paxctl/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/paxctl/paxctl-0.5.ebuild | 9 |
2 files changed, 10 insertions, 6 deletions
diff --git a/sys-apps/paxctl/ChangeLog b/sys-apps/paxctl/ChangeLog index d91c6a856670..02211bc7f97a 100644 --- a/sys-apps/paxctl/ChangeLog +++ b/sys-apps/paxctl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/paxctl -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/ChangeLog,v 1.27 2007/10/31 03:42:29 jer Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/ChangeLog,v 1.28 2008/05/09 20:54:09 solar Exp $ + + 09 May 2008; <solar@gentoo.org> paxctl-0.5.ebuild: + - make sure we can cross compile 31 Oct 2007; Jeroen Roovers <jer@gentoo.org> paxctl-0.5.ebuild: Stable for HPPA (bug #195234). diff --git a/sys-apps/paxctl/paxctl-0.5.ebuild b/sys-apps/paxctl/paxctl-0.5.ebuild index 5f0c788c1d02..e483537dbfc0 100644 --- a/sys-apps/paxctl/paxctl-0.5.ebuild +++ b/sys-apps/paxctl/paxctl-0.5.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/paxctl-0.5.ebuild,v 1.6 2007/12/11 10:17:15 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/paxctl/paxctl-0.5.ebuild,v 1.7 2008/05/09 20:54:09 solar Exp $ -inherit flag-o-matic +inherit flag-o-matic toolchain-funcs DESCRIPTION="Manages various PaX related program header flags for Elf32, Elf64, binaries." SRC_URI="http://pax.grsecurity.net/paxctl-${PV}.tar.gz" @@ -16,7 +16,8 @@ DEPEND=">=sys-devel/binutils-2.14.90.0.8-r1" RDEPEND="" src_compile() { - emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" + tc-export CC + emake CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" } src_install() { |