summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2010-05-04 08:03:40 +0000
committerTorsten Veller <tove@gentoo.org>2010-05-04 08:03:40 +0000
commitace5e5f94e93d5be44a988b2519f1b1f8f103ecd (patch)
tree32e15822cc49320ebd5003c3a8c660b5b2a8b45c /eclass/db.eclass
parent[kde-base/kcmshell] Restore accidently dropped ~x86-fbsd keyword on KDE SC 4.4.3 (diff)
downloadhistorical-ace5e5f94e93d5be44a988b2519f1b1f8f103ecd.tar.gz
historical-ace5e5f94e93d5be44a988b2519f1b1f8f103ecd.tar.bz2
historical-ace5e5f94e93d5be44a988b2519f1b1f8f103ecd.zip
Fix db_src_install_usrbinslot to proper SLOT again (#318367) and add a die
Diffstat (limited to 'eclass/db.eclass')
-rw-r--r--eclass/db.eclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/db.eclass b/eclass/db.eclass
index 8dd54cbcdeb2..f74e39cb1c52 100644
--- a/eclass/db.eclass
+++ b/eclass/db.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/db.eclass,v 1.35 2010/05/04 02:06:16 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/db.eclass,v 1.36 2010/05/04 08:03:40 tove Exp $
# This is a common location for functions used in the sys-libs/db ebuilds
#
# Bugs: pauldv@gentoo.org
@@ -92,7 +92,8 @@ db_src_install_usrbinslot() {
# slot all program names to avoid overwriting
for fname in "${D}"/usr/bin/db_*
do
- mv "${fname}" "${fname//\/db_/\/db${SLOT}_}"
+ mv "${fname}" "${fname//\/db_//db${SLOT}_}" || \
+ die "Failed to rename ${fname}"
done
}