Skip to content

Commit

Permalink
Fix building SASL
Browse files Browse the repository at this point in the history
  • Loading branch information
bokysan committed Mar 1, 2025
1 parent 69d1a4c commit 0e25ca0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build-scripts/sasl-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,12 @@ if [ -f /etc/alpine-release ]; then
apk del .build-deps;
else
apt-get update -y -qq
LIBS="git build-essential cmake pkg-config libcurl4-openssl-dev libssl-dev libjsoncpp-dev libsasl2-dev python3-venv"
LIBS="git build-essential cmake pkg-config libcurl4-openssl-dev libssl-dev libjsoncpp-dev libsasl2-dev"
apt-get install -y --no-install-recommends ${LIBS}
build_sasl2
apt-get install -y --no-install-recommends python3-venv
setup_python_venv
apt-get remove --purge -y ${LIBS}
apt-get remove --purge -y ${LIBS} python3-venv
apt-get autoremove --yes
apt-get clean autoclean
fi
Expand Down

0 comments on commit 0e25ca0

Please sign in to comment.