diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2013-09-19 17:36:50 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2013-09-19 17:36:50 +0000 |
commit | d9fdf68c84f4e704bfdf2da42c3ddc2e4922a224 (patch) | |
tree | 3d65def134dc6065bc54f72e34bbf92fed372805 /eclass | |
parent | no need to cd (diff) | |
download | gentoo-2-d9fdf68c84f4e704bfdf2da42c3ddc2e4922a224.tar.gz gentoo-2-d9fdf68c84f4e704bfdf2da42c3ddc2e4922a224.tar.bz2 gentoo-2-d9fdf68c84f4e704bfdf2da42c3ddc2e4922a224.zip |
Fixed prefix qa
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/distutils-r1.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 232b0a66cf28..a35fa554f281 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.980 2013/09/19 09:42:32 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.981 2013/09/19 17:36:50 ottxor Exp $ + + 19 Sep 2013; Christoph Junghans <ottxor@gentoo.org> distutils-r1.eclass: + Fixed prefix qa 19 Sep 2013; Michał Górny <mgorny@gentoo.org> git-r3.eclass: Strip trailing slashes from repo URI when determining local copy directory. diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index dad6eed33dd6..4cf198482fd9 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-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/distutils-r1.eclass,v 1.81 2013/09/18 22:48:10 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.82 2013/09/19 17:36:50 ottxor Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -424,7 +424,7 @@ _distutils-r1_wrap_scripts() { local PYTHON_SCRIPTDIR=${EPREFIX}/usr/bin fi - mkdir -p "${path}/usr/bin" || die + mkdir -p "${path}${EPREFIX}/usr/bin" || die local f while IFS= read -r -d '' f; do local basename=${f##*/} |