Files
ports/lang/python315/files/patch-Misc_python-config.sh.in
T
Matthias Andree 3778d515a5 lang/python315: Repocopy of lang/python314
PR:		295131
Sponsored by:	UNIS Labs
2026-05-10 01:02:59 +03:00

12 lines
481 B
Bash

--- Misc/python-config.sh.in.orig 2025-01-16 01:47:29 UTC
+++ Misc/python-config.sh.in
@@ -21,7 +21,7 @@ installed_prefix ()
# 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")