Commit 8d9f05fb authored by mattip's avatar mattip
Browse files

fix problem with manylinux_2_24 image

parent 306ccee7
...@@ -55,6 +55,12 @@ else ...@@ -55,6 +55,12 @@ else
fi fi
elif [[ $MB_ML_VER == "_2_24" ]]; then elif [[ $MB_ML_VER == "_2_24" ]]; then
apt update apt update
if [ ! -d /usr/local/man ]; then
# Fix problem with manylinux_2_24 image
# /usr/local/man is a broken symlink
rm /usr/local/man
ln -s /usr/share/man /usr/local/man
fi
if [ "${MB_PYTHON_VERSION:0:4}" == "pypy" ]; then if [ "${MB_PYTHON_VERSION:0:4}" == "pypy" ]; then
apt install -y wget apt install -y wget
fi fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment