diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2008-10-23 20:41:17 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2008-10-23 20:41:17 +0000 |
commit | 9af056c1ae2d3a8a1e9402cddc6ea97844ea8cba (patch) | |
tree | 349a0b6a7974cb29307e6084863e44c5b7b2eeb5 /dev-util | |
parent | Bump to 1.0.2. Crash fixes, emit mount-added signal when needed and some FUSE... (diff) | |
download | gentoo-2-9af056c1ae2d3a8a1e9402cddc6ea97844ea8cba.tar.gz gentoo-2-9af056c1ae2d3a8a1e9402cddc6ea97844ea8cba.tar.bz2 gentoo-2-9af056c1ae2d3a8a1e9402cddc6ea97844ea8cba.zip |
Fix problem where installation would fail but src_install would succeed because no || die was appended to the installation command. Bug 243404, thanks to Oliver Borm <oli.borm@web.de>
(Portage version: 2.2_rc12/cvs/Linux 2.6.27 x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/eric/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/eric/eric-3.7.2-r1.ebuild | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/dev-util/eric/ChangeLog b/dev-util/eric/ChangeLog index 0dda9075bc1c..ad72b4bb77ea 100644 --- a/dev-util/eric/ChangeLog +++ b/dev-util/eric/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/eric # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.65 2008/09/03 23:32:03 pythonhead Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.66 2008/10/23 20:41:17 loki_val Exp $ + + 23 Oct 2008; Peter Alfredsen <loki_val@gentoo.org> eric-3.7.2-r1.ebuild: + Fix problem where installation would fail but src_install would succeed + because no || die was appended to the installation command. Bug 243404, + thanks to Oliver Borm <oli.borm@web.de> 03 Sep 2008; Rob Cakebread <pythonhead@gentoo.org> eric-4.2.0.ebuild: Fix qscintilla-python RDEPEND. Bug #236552 diff --git a/dev-util/eric/eric-3.7.2-r1.ebuild b/dev-util/eric/eric-3.7.2-r1.ebuild index 708c8b8af990..3133ab8e0f82 100644 --- a/dev-util/eric/eric-3.7.2-r1.ebuild +++ b/dev-util/eric/eric-3.7.2-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-3.7.2-r1.ebuild,v 1.9 2007/11/20 05:42:49 hawking Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-3.7.2-r1.ebuild,v 1.10 2008/10/23 20:41:17 loki_val Exp $ inherit python eutils multilib @@ -40,7 +40,7 @@ src_install() { -b /usr/bin \ -i "${D}" \ -d /usr/$(get_libdir)/python${PYVER}/site-packages \ - -c + -c || die "install failed" dodoc HISTORY LICENSE.GPL THANKS eric/README* make_desktop_entry "eric3 --nosplash" \ |