diff options
author | 2012-02-29 18:32:10 +0100 | |
---|---|---|
committer | 2012-02-29 18:32:10 +0100 | |
commit | 56da8742836111f4f61195598b46db9a7482145f (patch) | |
tree | 940a143c50b064001a9f5d4c4c73c8e853e57ebb | |
parent | Remove src_unpack() - it does not do more than default one. (diff) | |
download | nelchael-56da8742836111f4f61195598b46db9a7482145f.tar.gz nelchael-56da8742836111f4f61195598b46db9a7482145f.tar.bz2 nelchael-56da8742836111f4f61195598b46db9a7482145f.zip |
Fix python3_1 (was 2_1).
-rw-r--r-- | eclass/python-distutils-ng.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/python-distutils-ng.eclass b/eclass/python-distutils-ng.eclass index 0b9f005..7be2653 100644 --- a/eclass/python-distutils-ng.eclass +++ b/eclass/python-distutils-ng.eclass @@ -234,7 +234,7 @@ python-distutils-ng_newscript() { if [[ -z "${default_impl}" ]]; then # TODO: Pick default implementation - for impl in python{2_7,2_6,2_5,3_2,2_1} pypy{1_8,1_7} jython2_5; do + for impl in python{2_7,2_6,2_5,3_2,3_1} pypy{1_8,1_7} jython2_5; do use "python_targets_${impl}" || continue default_impl="${impl}" break; |