diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-09-17 19:40:56 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-09-17 19:40:56 +0000 |
commit | 470b55814f3cfe931a516cd7c1f7de9f5e73bd6f (patch) | |
tree | c0337d3e40f051fadc7a77ef9561f8cbdaae8437 /eclass | |
parent | Remove some older versions (diff) | |
download | gentoo-2-470b55814f3cfe931a516cd7c1f7de9f5e73bd6f.tar.gz gentoo-2-470b55814f3cfe931a516cd7c1f7de9f5e73bd6f.tar.bz2 gentoo-2-470b55814f3cfe931a516cd7c1f7de9f5e73bd6f.zip |
Fix missing variable replacement in _python_ln_rel.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/python-utils-r1.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 31c262abc1fc..ba3583ea285b 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.973 2013/09/17 17:33:39 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.974 2013/09/17 19:40:56 mgorny Exp $ + + 17 Sep 2013; Michał Górny <mgorny@gentoo.org> python-utils-r1.eclass: + Fix missing variable replacement in _python_ln_rel. 17 Sep 2013; Michał Górny <mgorny@gentoo.org> distutils-r1.eclass: Use einstalldocs. diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 6bc7448ca4e8..0329d07de3be 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.39 2013/09/17 17:28:04 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.40 2013/09/17 19:40:56 mgorny Exp $ # @ECLASS: python-utils-r1 # @MAINTAINER: @@ -596,7 +596,7 @@ _python_ln_rel() { local tgpath=${target%/*}/ local sympath=${symname%/*}/ - local rel_path= + local rel_target= while [[ ${sympath} ]]; do local tgseg= symseg= |