diff options
author | 2007-02-03 00:19:41 +0000 | |
---|---|---|
committer | 2007-02-03 00:19:41 +0000 | |
commit | 47d53fa177ca0a95235e3d902c9b1aebb420e7ff (patch) | |
tree | de7e5b1d2633290a819ca79cf9b8c63631f164da /eclass | |
parent | Fix bug number in ChangeLog. (diff) | |
download | historical-47d53fa177ca0a95235e3d902c9b1aebb420e7ff.tar.gz historical-47d53fa177ca0a95235e3d902c9b1aebb420e7ff.tar.bz2 historical-47d53fa177ca0a95235e3d902c9b1aebb420e7ff.zip |
Fix tkinter message, bug 159323.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/distutils.eclass | 4 | ||||
-rw-r--r-- | eclass/python.eclass | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/eclass/distutils.eclass b/eclass/distutils.eclass index 6e5ac3d2f4c1..a7fb8ab82e7c 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.37 2007/01/27 11:21:45 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.38 2007/02/03 00:19:41 kloeri Exp $ # # Author: Jon Nelson <jnelson@gentoo.org> # Current Maintainer: Alastair Tse <liquidx@gentoo.org> @@ -112,7 +112,7 @@ 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 "Try adding 'dev-lang/python X tk' to:" + eerror "Try adding 'dev-lang/python tk' to:" eerror "/etc/portage/package.use" echo die "missing tkinter support with installed python" diff --git a/eclass/python.eclass b/eclass/python.eclass index 5495f1c0e9b3..cea3cd57511d 100644 --- a/eclass/python.eclass +++ b/eclass/python.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/python.eclass,v 1.29 2006/10/14 20:27:21 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.30 2007/02/03 00:18:52 kloeri Exp $ # # Author: Alastair Tse <liquidx@gentoo.org> # @@ -103,7 +103,7 @@ python_makesym() { python_tkinter_exists() { if ! python -c "import Tkinter" >/dev/null 2>&1; then eerror "You need to recompile python with Tkinter support." - eerror "Try adding: 'dev-lang/python X tk'" + eerror "Try adding: 'dev-lang/python tk'" eerror "in to /etc/portage/package.use" echo die "missing tkinter support with installed python" |