diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2001-10-22 19:15:04 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2001-10-22 19:15:04 +0000 |
commit | 56f76690199103148247f08e6c2992dd66aedade (patch) | |
tree | 4d08b2d2deac2415a5482fb639b48709bde35423 /dev-util/devhelp | |
parent | updated, thanks duckx for the diff, untested though (diff) | |
download | historical-56f76690199103148247f08e6c2992dd66aedade.tar.gz historical-56f76690199103148247f08e6c2992dd66aedade.tar.bz2 historical-56f76690199103148247f08e6c2992dd66aedade.zip |
missing || die
Diffstat (limited to 'dev-util/devhelp')
-rw-r--r-- | dev-util/devhelp/devhelp-0.2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-util/devhelp/devhelp-0.2.ebuild b/dev-util/devhelp/devhelp-0.2.ebuild index b1c10cd2ad6c..ede1cd855419 100644 --- a/dev-util/devhelp/devhelp-0.2.ebuild +++ b/dev-util/devhelp/devhelp-0.2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Mikael Hallendal <micke@hallendal.net> -# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/devhelp-0.2.ebuild,v 1.2 2001/10/22 10:12:02 hallski Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/devhelp-0.2.ebuild,v 1.3 2001/10/22 19:15:04 azarah Exp $ S=${WORKDIR}/${P} DESCRIPTION="Developer help browser" @@ -39,7 +39,7 @@ src_compile() { } src_install () { - try make DESTDIR=${D} install + try make DESTDIR=${D} install || die dodoc AUTHORS COPYING ChangeLog README NEWS TODO } |