From 03068d8e0496f1253aa72c4207571842c340a22b Mon Sep 17 00:00:00 2001
From: Andrew Murray <radarhere@users.noreply.github.com>
Date: Fri, 6 Dec 2024 22:33:23 +1100
Subject: [PATCH] Do not set MB_ML_VER on macOS

---
 common_utils.sh | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/common_utils.sh b/common_utils.sh
index 57704f17..c75edd9a 100755
--- a/common_utils.sh
+++ b/common_utils.sh
@@ -30,14 +30,14 @@ else
   # In the manylinux_2_24 image, based on Debian9, "python" is not installed
   # so link in something for the various system calls before PYTHON_EXE is set
   which python || export PATH=/opt/python/cp39-cp39/bin:$PATH
-fi
 
-if [ "$MB_ML_LIBC" == "musllinux" ]; then
-  IS_ALPINE=1;
-  MB_ML_VER=${MB_ML_VER:-"_1_2"}
-else
-  # Default Manylinux version
-  MB_ML_VER=${MB_ML_VER:-2014}
+  if [ "$MB_ML_LIBC" == "musllinux" ]; then
+    IS_ALPINE=1;
+    MB_ML_VER=${MB_ML_VER:-"_1_2"}
+  else
+    # Default Manylinux version
+    MB_ML_VER=${MB_ML_VER:-2014}
+  fi
 fi
 
 # Work round bug in travis xcode image described at