diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-04-28 18:56:35 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-04-28 18:56:35 +0000 |
commit | 2ba77dfc157696114d3cd58a471bf3159c3ba2ba (patch) | |
tree | 96ea18dafa52c85001ea83a25bf2e534fdff1706 /app-admin/gpsui | |
parent | tidy (Manifest recommit) (diff) | |
download | gentoo-2-2ba77dfc157696114d3cd58a471bf3159c3ba2ba.tar.gz gentoo-2-2ba77dfc157696114d3cd58a471bf3159c3ba2ba.tar.bz2 gentoo-2-2ba77dfc157696114d3cd58a471bf3159c3ba2ba.zip |
Fix econf || die
Diffstat (limited to 'app-admin/gpsui')
-rw-r--r-- | app-admin/gpsui/gpsui-2.2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-admin/gpsui/gpsui-2.2.ebuild b/app-admin/gpsui/gpsui-2.2.ebuild index b6fe922cb005..bdb62ff80471 100644 --- a/app-admin/gpsui/gpsui-2.2.ebuild +++ b/app-admin/gpsui/gpsui-2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/gpsui/gpsui-2.2.ebuild,v 1.7 2004/03/12 10:45:38 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/gpsui/gpsui-2.2.ebuild,v 1.8 2004/04/28 18:53:36 agriffis Exp $ DESCRIPTION="GUI program for managing running processes" HOMEPAGE="http://gpsui.sourceforge.net/" @@ -22,7 +22,7 @@ src_compile() { use nls \ && myconf="--enable-nls" \ || myconf="--disable-nls" - econf ${myconf} + econf ${myconf} || die "econf failed" emake || die "Compilation failed" } |