diff options
author | Michael Weber <xmw@gentoo.org> | 2012-08-04 10:56:25 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2012-08-04 10:56:25 +0000 |
commit | d3221940d50861dec4465feaaa3a4a18b1427287 (patch) | |
tree | 12ef8c024710b0fafc1c463b49a337ab228844ad /app-misc/empty | |
parent | Respect LDFLAGS (bug 429664, thanks flameeyes for the report and pinkbyte for... (diff) | |
download | gentoo-2-d3221940d50861dec4465feaaa3a4a18b1427287.tar.gz gentoo-2-d3221940d50861dec4465feaaa3a4a18b1427287.tar.bz2 gentoo-2-d3221940d50861dec4465feaaa3a4a18b1427287.zip |
Respect LDFLAGS (bug 429664, thanks flameeyes for the report and pinkbyte for the suggested fix).
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/empty')
-rw-r--r-- | app-misc/empty/ChangeLog | 6 | ||||
-rw-r--r-- | app-misc/empty/empty-0.6.18b.ebuild | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/app-misc/empty/ChangeLog b/app-misc/empty/ChangeLog index 66b12fcb29d2..85120ed249c4 100644 --- a/app-misc/empty/ChangeLog +++ b/app-misc/empty/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/empty # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/empty/ChangeLog,v 1.2 2012/08/04 10:54:34 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/empty/ChangeLog,v 1.3 2012/08/04 10:56:25 xmw Exp $ + + 04 Aug 2012; Michael Weber <xmw@gentoo.org> empty-0.6.18b.ebuild: + Respect LDFLAGS (bug 429664, thanks flameeyes for the report and pinkbyte for + the suggested fix). 04 Aug 2012; Michael Weber <xmw@gentoo.org> +files/empty-0.6.18b-respect-LDFLAGS.patch, empty-0.6.18b.ebuild: diff --git a/app-misc/empty/empty-0.6.18b.ebuild b/app-misc/empty/empty-0.6.18b.ebuild index 544738568442..c5b4172515b4 100644 --- a/app-misc/empty/empty-0.6.18b.ebuild +++ b/app-misc/empty/empty-0.6.18b.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/empty/empty-0.6.18b.ebuild,v 1.2 2012/08/04 10:54:34 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/empty/empty-0.6.18b.ebuild,v 1.3 2012/08/04 10:56:25 xmw Exp $ EAPI="4" -inherit eutils +inherit eutils toolchain-funcs DESCRIPTION="Small shell utility, similar to expect(1)" HOMEPAGE="http://empty.sourceforge.net" @@ -21,6 +21,10 @@ src_prepare() { epatch "${FILESDIR}/${P}-respect-LDFLAGS.patch" } +src_compile() { + emake CC=$(tc-getCC) +} + src_install() { dobin empty doman empty.1 |