diff options
author | Paul de Vrieze <pauldv@gentoo.org> | 2006-08-06 11:50:52 +0000 |
---|---|---|
committer | Paul de Vrieze <pauldv@gentoo.org> | 2006-08-06 11:50:52 +0000 |
commit | b2dda8eae6ceaa44e18addb4efaf99938bfaaaa9 (patch) | |
tree | dda2c4b976961f9ab3ed051abc0805d0fae06e6c /eclass/db.eclass | |
parent | stable amd64 (diff) | |
download | historical-b2dda8eae6ceaa44e18addb4efaf99938bfaaaa9.tar.gz historical-b2dda8eae6ceaa44e18addb4efaf99938bfaaaa9.tar.bz2 historical-b2dda8eae6ceaa44e18addb4efaf99938bfaaaa9.zip |
Change usage of tcltk to tcl
Diffstat (limited to 'eclass/db.eclass')
-rw-r--r-- | eclass/db.eclass | 6 |
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 } |