From e7536eccab56e11daaf6d01c3a7ae80143160a9a Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Sun, 8 Nov 2015 09:30:37 +0100 Subject: python-utils-r1.eclass: Reuse PYTHON_CONFIG in python_wrapper_setup() --- eclass/python-utils-r1.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'eclass/python-utils-r1.eclass') diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 68926abe9da7..33cee1b30a91 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -877,8 +877,8 @@ python_wrapper_setup() { rm -f "${workdir}"/bin/2to3 || die rm -f "${workdir}"/pkgconfig/python{,2,3}.pc || die - local EPYTHON PYTHON - python_export "${impl}" EPYTHON PYTHON + local EPYTHON PYTHON PYTHON_CONFIG + python_export "${impl}" EPYTHON PYTHON PYTHON_CONFIG local pyver pyother if python_is_python3; then @@ -906,7 +906,7 @@ python_wrapper_setup() { if [[ ${EPYTHON} == python* ]]; then cat > "${workdir}/bin/python-config" <<-_EOF_ #!/bin/sh - exec "${PYTHON}-config" "\${@}" + exec "${PYTHON_CONFIG}" "\${@}" _EOF_ cp "${workdir}/bin/python-config" \ "${workdir}/bin/python${pyver}-config" || die -- cgit v1.2.3-65-gdbad