diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-30 14:43:57 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-30 14:43:57 +0000 |
commit | db1d0ed9cd997bca38e036bfe51a6ec0d6e74c99 (patch) | |
tree | 992d54658cc61745328b3fbf1499e1498cff3c24 /app-arch/bsdtar | |
parent | Apply patch for PIC compatibility on x86 architecture, thanks to PaX Team. Cl... (diff) | |
download | gentoo-2-db1d0ed9cd997bca38e036bfe51a6ec0d6e74c99.tar.gz gentoo-2-db1d0ed9cd997bca38e036bfe51a6ec0d6e74c99.tar.bz2 gentoo-2-db1d0ed9cd997bca38e036bfe51a6ec0d6e74c99.zip |
Die when the install failed.
(Portage version: 2.1.1_pre4)
Diffstat (limited to 'app-arch/bsdtar')
-rw-r--r-- | app-arch/bsdtar/ChangeLog | 6 | ||||
-rw-r--r-- | app-arch/bsdtar/bsdtar-1.2.53-r1.ebuild | 4 | ||||
-rw-r--r-- | app-arch/bsdtar/bsdtar-1.2.53.ebuild | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/app-arch/bsdtar/ChangeLog b/app-arch/bsdtar/ChangeLog index 56c4143c6690..cbde9ba91092 100644 --- a/app-arch/bsdtar/ChangeLog +++ b/app-arch/bsdtar/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-arch/bsdtar # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/bsdtar/ChangeLog,v 1.30 2006/06/18 00:31:40 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/bsdtar/ChangeLog,v 1.31 2006/07/30 14:43:57 flameeyes Exp $ + + 30 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> bsdtar-1.2.53.ebuild, + bsdtar-1.2.53-r1.ebuild: + Die when the install failed. *bsdtar-1.2.53-r1 (18 Jun 2006) diff --git a/app-arch/bsdtar/bsdtar-1.2.53-r1.ebuild b/app-arch/bsdtar/bsdtar-1.2.53-r1.ebuild index ac5767cb1850..fc9a45dbf73c 100644 --- a/app-arch/bsdtar/bsdtar-1.2.53-r1.ebuild +++ b/app-arch/bsdtar/bsdtar-1.2.53-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/bsdtar/bsdtar-1.2.53-r1.ebuild,v 1.1 2006/06/18 00:31:40 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/bsdtar/bsdtar-1.2.53-r1.ebuild,v 1.2 2006/07/30 14:43:57 flameeyes Exp $ inherit eutils autotools @@ -54,7 +54,7 @@ src_compile() { } src_install() { - emake DESTDIR="${D}" install + emake DESTDIR="${D}" install || die "emake install failed" # Create tar symlink for FreeBSD if [[ ${CHOST} == *-freebsd* ]]; then diff --git a/app-arch/bsdtar/bsdtar-1.2.53.ebuild b/app-arch/bsdtar/bsdtar-1.2.53.ebuild index 43779bc10f16..3a1d7e13264e 100644 --- a/app-arch/bsdtar/bsdtar-1.2.53.ebuild +++ b/app-arch/bsdtar/bsdtar-1.2.53.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/bsdtar/bsdtar-1.2.53.ebuild,v 1.4 2006/06/09 20:15:28 exg Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/bsdtar/bsdtar-1.2.53.ebuild,v 1.5 2006/07/30 14:43:57 flameeyes Exp $ inherit eutils autotools @@ -53,7 +53,7 @@ src_compile() { } src_install() { - make DESTDIR="${D}" install + make DESTDIR="${D}" install || die "make install failed" # Create tar symlink for FreeBSD if [[ ${CHOST} == *-freebsd* ]]; then |