summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Tse <liquidx@gentoo.org>2006-08-07 00:21:49 +0000
committerAlastair Tse <liquidx@gentoo.org>2006-08-07 00:21:49 +0000
commit1c6607b43f1d4516c59dcf658cc36e5461072cf8 (patch)
tree79ef68d29b7c9f36813e7af0ab42422304d70a0e /eclass/distutils.eclass
parentMarking stable amd64, sparc (diff)
downloadhistorical-1c6607b43f1d4516c59dcf658cc36e5461072cf8.tar.gz
historical-1c6607b43f1d4516c59dcf658cc36e5461072cf8.tar.bz2
historical-1c6607b43f1d4516c59dcf658cc36e5461072cf8.zip
update error message in python and distutils eclass to reflect USE flag renaming from tcltk to tk. (#142954)
Diffstat (limited to 'eclass/distutils.eclass')
-rw-r--r--eclass/distutils.eclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/distutils.eclass b/eclass/distutils.eclass
index c707061d27b6..7f771c416b2d 100644
--- a/eclass/distutils.eclass
+++ b/eclass/distutils.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/distutils.eclass,v 1.31 2006/06/03 17:56:35 radek Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.32 2006/08/07 00:21:49 liquidx Exp $
#
# Author: Jon Nelson <jnelson@gentoo.org>
# Current Maintainer: Alastair Tse <liquidx@gentoo.org>
@@ -111,7 +111,8 @@ distutils_python_version() {
distutils_python_tkinter() {
if ! python -c "import Tkinter" >/dev/null 2>&1; then
eerror "You need to recompile python with Tkinter support."
- eerror "That means: USE='tcltk' emerge python"
+ eerror "Try adding 'dev-lang/python X tk' to:"
+ eerror "/etc/portage/package.use"
echo
die "missing tkinter support with installed python"
fi