From: Bryan Østergaard Date: Sat, 3 Feb 2007 00:19:41 +0000 (+0000) Subject: Fix tkinter message, bug 159323. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=47d53fa177ca0a95235e3d902c9b1aebb420e7ff;p=gentoo.git Fix tkinter message, bug 159323. --- 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 # Current Maintainer: Alastair Tse @@ -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 # @@ -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"