From 930c93129234e5ed3f67be1b8795a5a20e2745db Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Fri, 9 Apr 2021 01:31:49 +0300 Subject: lang/python310: add python 3.10.0.beta4 PR: 256150 Approved by: maintainer timeout (python@, 1 month) Differential Revision: https://reviews.freebsd.org/D30475 --- lang/python310/files/patch-Misc__python-config.sh.in | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lang/python310/files/patch-Misc__python-config.sh.in (limited to 'lang/python310/files/patch-Misc__python-config.sh.in') diff --git a/lang/python310/files/patch-Misc__python-config.sh.in b/lang/python310/files/patch-Misc__python-config.sh.in new file mode 100644 index 000000000000..ebb0c6a51f6d --- /dev/null +++ b/lang/python310/files/patch-Misc__python-config.sh.in @@ -0,0 +1,11 @@ +--- Misc/python-config.sh.in.orig 2018-07-13 21:07:16 UTC ++++ Misc/python-config.sh.in +@@ -15,7 +15,7 @@ fi + # Returns the actual prefix where this script was installed to. + installed_prefix () + { +- RESULT=$(dirname $(cd $(dirname "$1") && pwd -P)) ++ RESULT=$(dirname $(cd $(dirname $(realpath "$1")) && pwd -P)) + if which readlink >/dev/null 2>&1 ; then + if readlink -f "$RESULT" >/dev/null 2>&1; then + RESULT=$(readlink -f "$RESULT") -- cgit v1.2.3