diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-05-10 22:03:30 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-05-10 22:03:30 +0000 |
commit | 0b7bd3650f4d7afc577171b238422f1ea3093381 (patch) | |
tree | e882449b0aa305699106396de4b027b7bcfa9e55 /eclass/python-r1.eclass | |
parent | sql -> dbi use flag (bug #410829) (diff) | |
download | historical-0b7bd3650f4d7afc577171b238422f1ea3093381.tar.gz historical-0b7bd3650f4d7afc577171b238422f1ea3093381.tar.bz2 historical-0b7bd3650f4d7afc577171b238422f1ea3093381.zip |
Consistently create ${EPYTHON} subdir for Python wrappers. Fixes conflict between Python & vala wrappers, bug #469312.
Diffstat (limited to 'eclass/python-r1.eclass')
-rw-r--r-- | eclass/python-r1.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass index d1cc4206d6af..84c923fe2170 100644 --- a/eclass/python-r1.eclass +++ b/eclass/python-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-r1.eclass,v 1.53 2013/04/07 17:02:52 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.54 2013/05/10 22:03:30 mgorny Exp $ # @ECLASS: python-r1 # @MAINTAINER: @@ -639,7 +639,7 @@ _python_multibuild_wrapper() { local -x EPYTHON PYTHON local -x PATH=${PATH} PKG_CONFIG_PATH=${PKG_CONFIG_PATH} python_export "${MULTIBUILD_VARIANT}" EPYTHON PYTHON - python_wrapper_setup "${T}/${EPYTHON}" + python_wrapper_setup "${@}" } @@ -712,7 +712,7 @@ python_export_best() { debug-print "${FUNCNAME}: Best implementation is: ${best}" python_export "${best}" "${@}" - python_wrapper_setup "${T}" + python_wrapper_setup } # @FUNCTION: python_replicate_script |