summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2008-06-29 08:08:55 +0000
committerTorsten Veller <tove@gentoo.org>2008-06-29 08:08:55 +0000
commit50820ce108d37858103b3c5e17bef63e9e2e60a5 (patch)
tree6c4d95019137e4e35a26a91d719750182d3468a0 /sci-libs
parentAdd missing die: || "..." -> || die "..." (diff)
downloadgentoo-2-50820ce108d37858103b3c5e17bef63e9e2e60a5.tar.gz
gentoo-2-50820ce108d37858103b3c5e17bef63e9e2e60a5.tar.bz2
gentoo-2-50820ce108d37858103b3c5e17bef63e9e2e60a5.zip
Add missing die: || "..." -> || die "..."
(Portage version: 2.2_rc1/cvs/Linux 2.6.24-tuxonice-r9 i686)
Diffstat (limited to 'sci-libs')
-rw-r--r--sci-libs/libcore/ChangeLog7
-rw-r--r--sci-libs/libcore/libcore-1.7.ebuild8
2 files changed, 9 insertions, 6 deletions
diff --git a/sci-libs/libcore/ChangeLog b/sci-libs/libcore/ChangeLog
index 38a8b4fd5d9c..7d556ce20fca 100644
--- a/sci-libs/libcore/ChangeLog
+++ b/sci-libs/libcore/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/libcore
-# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/libcore/ChangeLog,v 1.2 2006/10/22 16:35:30 swegener Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libcore/ChangeLog,v 1.3 2008/06/29 08:08:55 tove Exp $
+
+ 29 Jun 2008; Torsten Veller <tove@gentoo.org> libcore-1.7.ebuild:
+ Add missing die: || "..." -> || die "..."
*libcore-1.7 (17 Oct 2006)
diff --git a/sci-libs/libcore/libcore-1.7.ebuild b/sci-libs/libcore/libcore-1.7.ebuild
index edeaebce5c4c..fca7ad548627 100644
--- a/sci-libs/libcore/libcore-1.7.ebuild
+++ b/sci-libs/libcore/libcore-1.7.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/libcore/libcore-1.7.ebuild,v 1.2 2006/10/17 15:16:45 djay Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/libcore/libcore-1.7.ebuild,v 1.3 2008/06/29 08:08:55 tove Exp $
inherit eutils toolchain-funcs
@@ -45,9 +45,9 @@ src_install(){
done
dodir /usr/include || die "Unable to create include dir"
- cp -r ./inc/* "${D}/usr/include/" || "Unable to copy headers"
+ cp -r ./inc/* "${D}/usr/include/" || die "Unable to copy headers"
- dodoc FAQs README || "Unable to install default doc"
+ dodoc FAQs README || die "Unable to install default doc"
if use doc; then
dodoc doc/ANNOUNCEMENT* doc/*pdf doc/papers/* || \
die "Unable to install doc"