diff options
author | Victor Ostorga <vostorga@gentoo.org> | 2009-10-23 15:48:24 +0000 |
---|---|---|
committer | Victor Ostorga <vostorga@gentoo.org> | 2009-10-23 15:48:24 +0000 |
commit | d4919c6b87b2285a562817e5ac481f8f1ed10feb (patch) | |
tree | 5eb30a31470274fd362c5850a8b9c6c52fcfa437 /dev-lang/nqc | |
parent | whitespace (diff) | |
download | gentoo-2-d4919c6b87b2285a562817e5ac481f8f1ed10feb.tar.gz gentoo-2-d4919c6b87b2285a562817e5ac481f8f1ed10feb.tar.bz2 gentoo-2-d4919c6b87b2285a562817e5ac481f8f1ed10feb.zip |
Adding || die to make install
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'dev-lang/nqc')
-rw-r--r-- | dev-lang/nqc/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/nqc/nqc-2.5.1.ebuild | 4 | ||||
-rw-r--r-- | dev-lang/nqc/nqc-3.1_p4.ebuild | 6 |
3 files changed, 9 insertions, 6 deletions
diff --git a/dev-lang/nqc/ChangeLog b/dev-lang/nqc/ChangeLog index 6485cf76fc45..0d1d568760a4 100644 --- a/dev-lang/nqc/ChangeLog +++ b/dev-lang/nqc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/nqc # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/nqc/ChangeLog,v 1.14 2009/09/23 16:52:35 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nqc/ChangeLog,v 1.15 2009/10/23 15:48:24 vostorga Exp $ + + 23 Oct 2009; Víctor Ostorga <vostorga@gentoo.org> nqc-2.5.1.ebuild: + Adding die to make install 23 Sep 2009; Patrick Lauer <patrick@gentoo.org> nqc-2.5.1.ebuild, nqc-3.1_p4.ebuild: diff --git a/dev-lang/nqc/nqc-2.5.1.ebuild b/dev-lang/nqc/nqc-2.5.1.ebuild index 93b8e6d936fe..c27016a594e6 100644 --- a/dev-lang/nqc/nqc-2.5.1.ebuild +++ b/dev-lang/nqc/nqc-2.5.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/nqc/nqc-2.5.1.ebuild,v 1.13 2009/09/23 16:52:35 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nqc/nqc-2.5.1.ebuild,v 1.14 2009/10/23 15:48:24 vostorga Exp $ inherit eutils @@ -32,7 +32,7 @@ src_compile() { } src_install() { - make DESTDIR=${D} install + make DESTDIR="${D}" install || die "make install failed" dodoc history.txt readme.txt scout.txt test.nqc } diff --git a/dev-lang/nqc/nqc-3.1_p4.ebuild b/dev-lang/nqc/nqc-3.1_p4.ebuild index 3777e5f231d9..9d9bfb4d3ded 100644 --- a/dev-lang/nqc/nqc-3.1_p4.ebuild +++ b/dev-lang/nqc/nqc-3.1_p4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/nqc/nqc-3.1_p4.ebuild,v 1.3 2009/09/23 16:52:35 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nqc/nqc-3.1_p4.ebuild,v 1.4 2009/10/23 15:48:24 vostorga Exp $ inherit eutils @@ -20,10 +20,10 @@ DEPEND="usb? ( dev-libs/legousbtower )" src_compile() { if use usb; then - epatch ${FILESDIR}/${P}-usb.patch + epatch "${FILESDIR}"/${P}-usb.patch fi if use amd64; then - epatch ${FILESDIR}/${P}-amd64.patch + epatch "${FILESDIR}"/${P}-amd64.patch fi sed -i -e 's/PREFIX?\=\/usr\/local/PREFIX?\=\/usr/' Makefile emake || die |