From 97eda4403f385f83f7688755c79c71e3fe647f0c Mon Sep 17 00:00:00 2001 From: native-api Date: Sun, 31 Aug 2025 21:48:24 +0300 Subject: [PATCH] Fix Readline and OpenSSL detection for MacPorts without the corresponding package (#3317) --- plugins/python-build/bin/python-build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index 27e793eb..b9322063 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -1593,6 +1593,7 @@ has_broken_mac_readline() { if can_use_macports; then use_macports_readline && return 1 fi + return 0 } use_homebrew_readline() { @@ -1682,6 +1683,7 @@ has_broken_mac_openssl() { use_macports_openssl && return 1 fi fi + return 0 } use_homebrew_openssl() {