diff options
author | Tilman Klar <phoenix@gentoo.org> | 2002-08-19 12:55:28 +0000 |
---|---|---|
committer | Tilman Klar <phoenix@gentoo.org> | 2002-08-19 12:55:28 +0000 |
commit | d8f8c5d7fe19369b584bea57e89e63e861a35631 (patch) | |
tree | 3247662b914d4d176c826f017d5d9358933f815d /app-shells/zsh | |
parent | Bumped to new version (diff) | |
download | gentoo-2-d8f8c5d7fe19369b584bea57e89e63e861a35631.tar.gz gentoo-2-d8f8c5d7fe19369b584bea57e89e63e861a35631.tar.bz2 gentoo-2-d8f8c5d7fe19369b584bea57e89e63e861a35631.zip |
Used emake instead of make (like in 4.0.5)
Diffstat (limited to 'app-shells/zsh')
-rw-r--r-- | app-shells/zsh/zsh-4.0.6.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/app-shells/zsh/zsh-4.0.6.ebuild b/app-shells/zsh/zsh-4.0.6.ebuild index 618c74a93b48..ad5c45fd27f3 100644 --- a/app-shells/zsh/zsh-4.0.6.ebuild +++ b/app-shells/zsh/zsh-4.0.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.0.6.ebuild,v 1.1 2002/08/19 12:46:27 phoenix Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.0.6.ebuild,v 1.2 2002/08/19 12:55:28 phoenix Exp $ DESCRIPTION="UNIX Shell similar to the Korn shell" SRC_URI="ftp://ftp.zsh.org/pub/${P}.tar.gz" @@ -27,9 +27,10 @@ src_compile() { --enable-zshlogin=/etc/zsh/zshlogin \ --enable-zshrc=/etc/zsh/zshrc \ --enable-fndir=/usr/share/zsh \ - --enable-function-subdirs || die - emake || die "emake failed" - make check || die + --enable-function-subdirs || die "configure failed" + # emake still b0rks + make || die "make failed" + make check || die "make check failed" } src_install() { @@ -40,7 +41,7 @@ src_install() { fndir=${D}/usr/share/zsh \ infodir=${D}/usr/share/info \ install.bin install.man install.modules \ - install.info install.fns || die + install.info install.fns || die "make install failed" dodoc ChangeLog META-FAQ README INSTALL LICENCE config.modules docinto StartupFiles |