diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-30 20:44:18 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-30 20:44:18 +0000 |
commit | c749ab47cbda80a0564098ee9493ee0887398210 (patch) | |
tree | 8f7a3581c14220bd3eddb2e48c49a0b29ac71d32 | |
parent | EPYTHON variable shouldn't contain any '/' characters. (diff) | |
download | eselect-python-c749ab47cbda80a0564098ee9493ee0887398210.tar.gz eselect-python-c749ab47cbda80a0564098ee9493ee0887398210.tar.bz2 eselect-python-c749ab47cbda80a0564098ee9493ee0887398210.zip |
Update DESCRIPTION.
-rw-r--r-- | python.eselect | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python.eselect b/python.eselect index 7f11590..1097de1 100644 --- a/python.eselect +++ b/python.eselect @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id: $ -DESCRIPTION="Manage the /usr/bin/python and python.1 man symlinks." +DESCRIPTION="Manage Python symlinks" MAINTAINER="python@gentoo.org" SVN_DATE='$Date$' VERSION=$(svn_date_to_version "${SVN_DATE}" ) @@ -13,7 +13,7 @@ MAN_PATH="${ROOT%/}/usr/share/man/man1/" PYTHON_INTERPRETERS_GROUP="" -# Find a list of python versions +# Find a list of Python versions find_targets() { local interpreter interpreters="python?.?" @@ -24,7 +24,7 @@ find_targets() { fi # Think twice before adding jython to this list. /usr/bin/jython - # is a bash wrapper that calls java-config, which is a python + # is a bash wrapper that calls java-config, which is a Python # script, so you need a valid /usr/bin/python to start jython. for interpreter in "${INTERPRETER_PATH}"${interpreters}; do if [[ -f "${interpreter}" ]]; then |