From 8cdca9d7050004d577e438df1422d8bae27e235b Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Thu, 27 Mar 2025 00:30:26 +0300 Subject: [PATCH] MacPorts off by default in Linux --- plugins/python-build/bin/python-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index 812a4581..1b3e04e8 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -142,7 +142,7 @@ can_use_macports() { } [[ -n "$PYTHON_BUILD_USE_MACPORTS" ]] && return 0 [[ -n "$PYTHON_BUILD_SKIP_MACPORTS" ]] && return 1 - command -v port &>/dev/null && return 0 + is_mac && command -v port &>/dev/null && return 0 return 1 }