strongSwan: T1888: install libcurl4-openssl-dev build dependency

ocserv docker container depends on libcurl4-gnutls-dev which automatically
uninstalls libcurl4-openssl-dev from the container. This commit re-adds the
dependency.
This commit is contained in:
Christian Breunig 2023-01-18 20:52:28 +01:00
parent 5dec87d1b9
commit 05d0c7359e

View File

@ -8,6 +8,9 @@ if [ ! -d ${SRC} ]; then
exit 1
fi
# Re-install libcurl4-openssl-dev, removed during docker build by ocserv
apt-get install -y libcurl4-openssl-dev
PATCH_DIR=${CWD}/patches
if [ -d $PATCH_DIR ]; then
for patch in $(ls ${PATCH_DIR})