diff options
author | Marien Zwart <marienz@gentoo.org> | 2006-07-14 15:13:32 +0000 |
---|---|---|
committer | Marien Zwart <marienz@gentoo.org> | 2006-07-14 15:13:32 +0000 |
commit | 51278bf89c0d9ace92762983d6277c361d7007fb (patch) | |
tree | d77e41f5bdb49a80a13a8333e778d043f8cedcd5 /eclass | |
parent | Stable on alpha wrt Bug #136708. (diff) | |
download | gentoo-2-51278bf89c0d9ace92762983d6277c361d7007fb.tar.gz gentoo-2-51278bf89c0d9ace92762983d6277c361d7007fb.tar.bz2 gentoo-2-51278bf89c0d9ace92762983d6277c361d7007fb.zip |
Recommend package.use instead of USE on the commandline to enable Tkinter support.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/python.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass index 32747d69501c..c7fb72c6e238 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.25 2006/06/16 13:54:25 marienz Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.26 2006/07/14 15:13:32 marienz Exp $ # # Author: Alastair Tse <liquidx@gentoo.org> # @@ -98,7 +98,8 @@ 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 "That means: USE='X tcltk' emerge python" + eerror "That means: 'dev-lang/python X tcltk'" + eerror "in /etc/portage/package.use" echo die "missing tkinter support with installed python" fi |