summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul de Vrieze <pauldv@gentoo.org>2006-08-06 11:50:52 +0000
committerPaul de Vrieze <pauldv@gentoo.org>2006-08-06 11:50:52 +0000
commit665c6dd68ddfd8921136feefadfa5b693b54a593 (patch)
tree07e99671cae70a16a36f0aa8fa91a82322da7d45 /eclass/db.eclass
parentstable amd64 (diff)
downloadgentoo-2-665c6dd68ddfd8921136feefadfa5b693b54a593.tar.gz
gentoo-2-665c6dd68ddfd8921136feefadfa5b693b54a593.tar.bz2
gentoo-2-665c6dd68ddfd8921136feefadfa5b693b54a593.zip
Change usage of tcltk to tcl
Diffstat (limited to 'eclass/db.eclass')
-rw-r--r--eclass/db.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/db.eclass b/eclass/db.eclass
index efc6c38eeb2b..961aa1cde68b 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.27 2006/07/13 13:11:14 pauldv Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/db.eclass,v 1.28 2006/08/06 11:50:52 pauldv Exp $
# This is a common location for functions used in the sys-libs/db ebuilds
#
# Bugs: pauldv@gentoo.org
@@ -113,7 +113,7 @@ db_src_install_usrlibcleanup() {
db_src_test() {
if has test $FEATURES; then
- if useq tcltk; then
+ if useq tcl; then
einfo "Running sys-libs/db testsuite"
ewarn "This can take 6+ hours on modern machines"
cd ${S}
@@ -122,7 +122,7 @@ db_src_test() {
tclsh testrunner.tcl
egrep -qs '^FAIL' ALL.OUT && die "Some tests failed, please see ${S}/ALL.OUT"
else
- eerror "You must have USE=tcltk to run the sys-libs/db testsuite."
+ eerror "You must have USE=tcl to run the sys-libs/db testsuite."
fi
fi
}