From: Michael Jeanson Date: Thu, 5 Aug 2021 21:51:31 +0000 (-0400) Subject: jjb: Use python3.9 explicitly on MacOS X-Git-Url: https://git.liburcu.org/?a=commitdiff_plain;h=0ef2148ab933b5d6f961c6afde35b21a13e8d0a6;p=lttng-ci.git jjb: Use python3.9 explicitly on MacOS Signed-off-by: Michael Jeanson --- diff --git a/scripts/babeltrace/build.sh b/scripts/babeltrace/build.sh index 614062a..2d39c2c 100755 --- a/scripts/babeltrace/build.sh +++ b/scripts/babeltrace/build.sh @@ -195,8 +195,8 @@ macos*) export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" export CPPFLAGS="-I/opt/local/include" export LDFLAGS="-L/opt/local/lib" - export PYTHON="python3" - export PYTHON_CONFIG="python3-config" + export PYTHON="python3.9" + export PYTHON_CONFIG="python3.9-config" ;; cygwin) diff --git a/scripts/liburcu/build.sh b/scripts/liburcu/build.sh index ed97629..edf4795 100755 --- a/scripts/liburcu/build.sh +++ b/scripts/liburcu/build.sh @@ -196,8 +196,8 @@ macos*) export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" export CPPFLAGS="-I/opt/local/include" export LDFLAGS="-L/opt/local/lib" - export PYTHON="python3" - export PYTHON_CONFIG="python3-config" + export PYTHON="python3.9" + export PYTHON_CONFIG="python3.9-config" ;; freebsd) diff --git a/scripts/lttng-tools/build.sh b/scripts/lttng-tools/build.sh index 84f12a2..3d0be52 100755 --- a/scripts/lttng-tools/build.sh +++ b/scripts/lttng-tools/build.sh @@ -250,8 +250,8 @@ macos*) export PATH="/opt/local/bin:/opt/local/sbin:$PATH" export CPPFLAGS="-I/opt/local/include $CPPFLAGS" export LDFLAGS="-L/opt/local/lib $LDFLAGS" - export PYTHON="python3" - export PYTHON_CONFIG="python3-config" + export PYTHON="python3.9" + export PYTHON_CONFIG="python3.9-config" RUN_TESTS="no" ;;