Skip to content

Commit 0e25ca0

Browse files
committed
Fix building SASL
1 parent 69d1a4c commit 0e25ca0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build-scripts/sasl-build.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ if [ -f /etc/alpine-release ]; then
4242
apk del .build-deps;
4343
else
4444
apt-get update -y -qq
45-
LIBS="git build-essential cmake pkg-config libcurl4-openssl-dev libssl-dev libjsoncpp-dev libsasl2-dev python3-venv"
45+
LIBS="git build-essential cmake pkg-config libcurl4-openssl-dev libssl-dev libjsoncpp-dev libsasl2-dev"
4646
apt-get install -y --no-install-recommends ${LIBS}
4747
build_sasl2
48+
apt-get install -y --no-install-recommends python3-venv
4849
setup_python_venv
49-
apt-get remove --purge -y ${LIBS}
50+
apt-get remove --purge -y ${LIBS} python3-venv
5051
apt-get autoremove --yes
5152
apt-get clean autoclean
5253
fi

0 commit comments

Comments
 (0)