diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-11-01 17:39:11 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-11-01 17:39:11 +0000 |
commit | c033611894524aa90519e0daa2df703a7551c8c3 (patch) | |
tree | 86f31418b9db173ba65d91dbb3e98b17e8963cb0 /eclass/python.eclass | |
parent | added changes by drobbins with makesym() to do relative path targets (diff) | |
download | historical-c033611894524aa90519e0daa2df703a7551c8c3.tar.gz historical-c033611894524aa90519e0daa2df703a7551c8c3.tar.bz2 historical-c033611894524aa90519e0daa2df703a7551c8c3.zip |
backing out changes, problems with python 2.3
Diffstat (limited to 'eclass/python.eclass')
-rw-r--r-- | eclass/python.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass index cd6a484c4b54..7655c976e9f7 100644 --- a/eclass/python.eclass +++ b/eclass/python.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.8 2003/11/01 17:35:59 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.9 2003/11/01 17:39:10 liquidx Exp $ # # Author: Alastair Tse <liquidx@gentoo.org> # @@ -63,8 +63,8 @@ python_version() { # to the latest installed version # python_makesym() { - alternatives_auto_makesym "/usr/bin/python" "python[0-9].[0-9]" - alternatives_auto_makesym "/usr/bin/python2" "python2.[0-9]" + alternatives_auto_makesym "/usr/bin/python" "/usr/bin/python[0-9].[0-9]" + alternatives_auto_makesym "/usr/bin/python2" "/usr/bin/python[0-9].[0-9]" } # |