diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2012-03-30 16:41:40 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2012-03-30 16:41:40 +0000 |
commit | f1bb198e9c2067e726c2999698022292bc9f5db1 (patch) | |
tree | 96f4e8ea53f0ac6a9959e8cc52cbe0b03aaaa979 /eclass | |
parent | Manifest fix (diff) | |
download | gentoo-2-f1bb198e9c2067e726c2999698022292bc9f5db1.tar.gz gentoo-2-f1bb198e9c2067e726c2999698022292bc9f5db1.tar.bz2 gentoo-2-f1bb198e9c2067e726c2999698022292bc9f5db1.zip |
Fix two small issues, spotted by Sławomir Nizio <slawomir.nizio@sabayon.org>.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 7 | ||||
-rw-r--r-- | eclass/python-distutils-ng.eclass | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 305243ca0071..11eb75ec77b1 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.194 2012/03/29 15:35:04 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.195 2012/03/30 16:41:40 nelchael Exp $ + + 30 Mar 2012; Krzysztof Pawlik <nelchael@gentoo.org> + python-distutils-ng.eclass: + Fix two small issues, spotted by Sławomir Nizio + <slawomir.nizio@sabayon.org>. 29 Mar 2012; Patrick Lauer <patrick@gentoo.org> apache-2.eclass: Sanitizing directory permissions #398899 diff --git a/eclass/python-distutils-ng.eclass b/eclass/python-distutils-ng.eclass index 6a6c75100894..5b86419a7898 100644 --- a/eclass/python-distutils-ng.eclass +++ b/eclass/python-distutils-ng.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.8 2012/03/28 14:21:55 marienz Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.9 2012/03/30 16:41:40 nelchael Exp $ # @ECLASS: python-distutils-ng # @MAINTAINER: @@ -25,7 +25,7 @@ # implementation # - src_install - you can define python_install function that will be run for # each implementation and python_install_all that will be run in original -# directory (so it wil lnot contain any implementation-specific files) +# directory (so it will not contain any implementation-specific files) # @ECLASS-VARIABLE: PYTHON_COMPAT # @DESCRIPTION: @@ -257,7 +257,7 @@ python-distutils-ng_newscript() { break done else - use "python_targets_${impl}" || \ + use "python_targets_${default_impl}" || \ die "default implementation ${default_impl} not enabled" fi |