Skip to content

Commit d22a05e

Browse files
committed
Extend cmake install to all archs
1 parent ae27ea1 commit d22a05e

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

build-scripts/manylinux-container-image/install-userspace-tools.sh

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,13 @@ PYTHON_INTERPRETER=/opt/python/cp39-cp39/bin/python
1111
VIRTUALENV_PYTHON_BIN="${USERSPACE_VENV_BIN_PATH}/python"
1212
VIRTUALENV_PIP_BIN="${VIRTUALENV_PYTHON_BIN} -m pip"
1313

14-
TOOLS_PKGS=auditwheel
15-
if [ "${ARCH}" == "x86_64" ]
16-
then
17-
# NOTE: Cmake removed compatibility with `cmake < 3.5` that
18-
# NOTE: libssh 0.9.6 is set up to require.
19-
# NOTE: So this patch limits the version of `cmake` we install.
20-
#
21-
# Ref: https://github.com/eclipse-ecal/ecal/issues/2041
22-
# FIXME: Drop the restriction once libssh is bumped to v0.11 series.
23-
TOOLS_PKGS="${TOOLS_PKGS} cmake<4 --only-binary=cmake"
24-
fi
14+
# NOTE: Cmake removed compatibility with `cmake < 3.5` that
15+
# NOTE: libssh 0.9.6 is set up to require.
16+
# NOTE: So this patch limits the version of `cmake` we install.
17+
#
18+
# Ref: https://github.com/eclipse-ecal/ecal/issues/2041
19+
# FIXME: Drop the restriction once libssh is bumped to v0.11 series.
20+
TOOLS_PKGS="auditwheel cmake<4 --only-binary=cmake"
2521

2622
# Avoid creation of __pycache__/*.py[c|o]
2723
export PYTHONDONTWRITEBYTECODE=1

0 commit comments

Comments
 (0)