diff options
author | Kevin McCarthy <signals@gentoo.org> | 2011-03-02 17:32:59 +0000 |
---|---|---|
committer | Kevin McCarthy <signals@gentoo.org> | 2011-03-02 17:32:59 +0000 |
commit | 6cb6b67562ded9fc92ad6c2dfc821e58d41395ce (patch) | |
tree | 0d5c9b0eeb0c92c69c593d89275dfefc94270ca1 /x11-misc/grun | |
parent | x86 stable per bug 356789 (diff) | |
download | gentoo-2-6cb6b67562ded9fc92ad6c2dfc821e58d41395ce.tar.gz gentoo-2-6cb6b67562ded9fc92ad6c2dfc821e58d41395ce.tar.bz2 gentoo-2-6cb6b67562ded9fc92ad6c2dfc821e58d41395ce.zip |
Fixed econf in src_compile()
(Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/grun')
-rw-r--r-- | x11-misc/grun/grun-0.9.2-r1.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/x11-misc/grun/grun-0.9.2-r1.ebuild b/x11-misc/grun/grun-0.9.2-r1.ebuild index 4a212eecd331..2ceec0004f73 100644 --- a/x11-misc/grun/grun-0.9.2-r1.ebuild +++ b/x11-misc/grun/grun-0.9.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/grun/grun-0.9.2-r1.ebuild,v 1.7 2011/03/02 17:07:49 signals Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/grun/grun-0.9.2-r1.ebuild,v 1.8 2011/03/02 17:32:59 signals Exp $ EAPI=2 @@ -30,12 +30,14 @@ src_prepare() { eautoreconf } -src_compile() { +src_configure() { [[ -z ${TERM} ]] && TERM=xterm econf $(use_enable nls) --disable-gtktest --enable-testfile \ --enable-associations --with-default-xterm=${TERM} +} +src_compile() { emake || die "emake failed." } |