diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-12-18 14:54:38 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-12-18 14:54:38 +0000 |
commit | 8cb6122d455491243ea933e9dd6e1c18497b9c91 (patch) | |
tree | 5b040b04af944e809ab150c6a13c60c936da14ec /app-shells | |
parent | New version, ~x86 masked. (diff) | |
download | gentoo-2-8cb6122d455491243ea933e9dd6e1c18497b9c91.tar.gz gentoo-2-8cb6122d455491243ea933e9dd6e1c18497b9c91.tar.bz2 gentoo-2-8cb6122d455491243ea933e9dd6e1c18497b9c91.zip |
Changed econf||die to econf
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/tcsh/tcsh-6.12.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app-shells/tcsh/tcsh-6.12.ebuild b/app-shells/tcsh/tcsh-6.12.ebuild index bb34f3d0a909..12ac9c03830d 100644 --- a/app-shells/tcsh/tcsh-6.12.ebuild +++ b/app-shells/tcsh/tcsh-6.12.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.12.ebuild,v 1.2 2002/12/09 04:17:43 manson Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.12.ebuild,v 1.3 2002/12/18 14:51:39 vapier Exp $ MY_P="${PN}-${PV}.00" - DESCRIPTION="Enhanced version of the Berkeley C shell (csh)" SRC_URI="ftp://ftp.astron.com/pub/tcsh/${MY_P}.tar.gz" -HOMEPAGE="http://www.tcsh.org" +HOMEPAGE="http://www.tcsh.org/" + LICENSE="BSD" SLOT="0" KEYWORDS="~x86 ~ppc ~sparc " @@ -25,7 +25,7 @@ src_unpack() { } src_compile() { - econf --prefix=/ || die "configure problem" + econf --prefix=/ emake || die "compile problem" } |