From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2195) id 8591D385BF83; Tue, 14 Apr 2020 04:42:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8591D385BF83 To: cygwin-apps-cvs@sourceware.org Subject: [cygport - the Cygwin packaging tool] branch master, updated. 0.33.1-24-gb12d739 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: ab5c616e837afe25cf90f3a03ef21e5fbf8ee846 X-Git-Newrev: b12d739379a840781dd3cc90924ac864ab5264f3 Message-Id: <20200414044220.8591D385BF83@sourceware.org> Date: Tue, 14 Apr 2020 04:42:20 +0000 (GMT) From: Yaakov Selkowitz X-BeenThere: cygwin-apps-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin-apps git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Apr 2020 04:42:20 -0000 https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/cygport.git;h=b12d739379a840781dd3cc90924ac864ab5264f3 commit b12d739379a840781dd3cc90924ac864ab5264f3 Author: Yaakov Selkowitz Date: Tue Apr 14 00:41:15 2020 -0400 python3-distutils: force hardcoding of python3.y instead of python3 Diff: --- cygclass/python3-distutils.cygclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cygclass/python3-distutils.cygclass b/cygclass/python3-distutils.cygclass index 63852b9..77adc03 100644 --- a/cygclass/python3-distutils.cygclass +++ b/cygclass/python3-distutils.cygclass @@ -51,7 +51,7 @@ python3_distutils_compile() { error "No Python Distutils module detected" fi - ${PYTHON3} setup.py build "${@}" || error "setup.py build failed" + $(readlink -f ${PYTHON3}) setup.py build "${@}" || error "setup.py build failed" } #****I* python3-distutils.cygclass/python3_distutils_install @@ -67,7 +67,7 @@ python3_distutils_install() { error "No Python Distutils module detected" fi - ${PYTHON3} setup.py "${@}" install --no-compile --root=${D} || error "setup.py install failed" + $(readlink -f ${PYTHON3}) setup.py "${@}" install --no-compile --root=${D} || error "setup.py install failed" } #****o* python3-distutils.cygclass/src_compile (python3-distutils)