diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-10-23 02:44:51 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-10-23 02:44:51 +0000 |
commit | 6b1025cc1affd744705e487ea8cfad7143aa0acc (patch) | |
tree | 212fd3a3c8d37128e42aa454652767d6a1715b9f /app-arch/unlzx/unlzx-1.1.ebuild | |
parent | Respect CC. (diff) | |
download | historical-6b1025cc1affd744705e487ea8cfad7143aa0acc.tar.gz historical-6b1025cc1affd744705e487ea8cfad7143aa0acc.tar.bz2 historical-6b1025cc1affd744705e487ea8cfad7143aa0acc.zip |
Respect LDFLAGS, respect CC.
Package-Manager: portage-2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64
Diffstat (limited to 'app-arch/unlzx/unlzx-1.1.ebuild')
-rw-r--r-- | app-arch/unlzx/unlzx-1.1.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app-arch/unlzx/unlzx-1.1.ebuild b/app-arch/unlzx/unlzx-1.1.ebuild index 7ce05c60f875..e480f1feae59 100644 --- a/app-arch/unlzx/unlzx-1.1.ebuild +++ b/app-arch/unlzx/unlzx-1.1.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unlzx/unlzx-1.1.ebuild,v 1.25 2008/01/26 18:43:52 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unlzx/unlzx-1.1.ebuild,v 1.26 2008/10/23 02:44:51 flameeyes Exp $ + +inherit toolchain-funcs DESCRIPTION="Unarchiver for Amiga LZX archives" SRC_URI="ftp://us.aminet.net/pub/aminet/misc/unix/${PN}.c.gz ftp://us.aminet.net/pub/aminet/misc/unix/${PN}.c.gz.readme" @@ -18,7 +20,7 @@ src_unpack() { } src_compile() { - gcc ${CFLAGS} -o unlzx unlzx.c || die + $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o unlzx unlzx.c || die } src_install() { |