Skip to content

Commit bfadfb4

Browse files
committed
Keep using ncurses5-dev for musllinux_1_1, accidentally bumped it for both
1 parent c8782d0 commit bfadfb4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docker/build_scripts/install-build-packages.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ elif [ "${AUDITWHEEL_POLICY}" == "manylinux_2_24" ]; then
2121
COMPILE_DEPS="libbz2-dev libncurses5-dev libreadline-dev tk-dev libgdbm-dev libdb-dev libpcap-dev liblzma-dev openssl libssl-dev libkeyutils-dev libkrb5-dev comerr-dev libidn2-0-dev libcurl4-openssl-dev uuid-dev libffi-dev linux-kernel-headers"
2222
elif [ "${AUDITWHEEL_POLICY}" == "musllinux_1_1" ] || [ "${AUDITWHEEL_POLICY}" == "musllinux_1_2" ]; then
2323
PACKAGE_MANAGER=apk
24-
COMPILE_DEPS="bzip2-dev ncurses-dev readline-dev tk-dev gdbm-dev libpcap-dev xz-dev openssl openssl-dev keyutils-dev krb5-dev libcom_err libidn-dev curl-dev util-linux-dev libffi-dev linux-headers"
24+
COMPILE_DEPS="bzip2-dev readline-dev tk-dev gdbm-dev libpcap-dev xz-dev openssl openssl-dev keyutils-dev krb5-dev libcom_err libidn-dev curl-dev util-linux-dev libffi-dev linux-headers"
25+
if [ "${AUDITWHEEL_POLICY}" == "musllinux_1_1" ]; then
26+
COMPILE_DEPS="${COMPILE_DEPS} ncurses5-dev"
27+
else
28+
COMPILE_DEPS="${COMPILE_DEPS} ncurses-dev"
29+
fi
2530
else
2631
echo "Unsupported policy: '${AUDITWHEEL_POLICY}'"
2732
exit 1

0 commit comments

Comments
 (0)