From f31a064848030e14727cbc853390001b58d1910e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 28 Jan 2021 00:04:39 +0100 Subject: [PATCH] Install libcurl to make it available in the CI builds It's not installed by default at least on GitHub Actions images. --- build/tools/before_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tools/before_install.sh b/build/tools/before_install.sh index 08167e458a..374b5823ff 100755 --- a/build/tools/before_install.sh +++ b/build/tools/before_install.sh @@ -37,7 +37,7 @@ case $(uname -s) in libglu1-mesa-dev" esac - extra_deps="$extra_deps libsecret-1-dev libnotify-dev" + extra_deps="$extra_deps libcurl4-openssl-dev libsecret-1-dev libnotify-dev" for pkg in $extra_deps; do if $(apt-cache pkgnames | grep -q $pkg) ; then pkg_install="$pkg_install $pkg"