From 505b0a30b55f5b98c60f4d71fd5bd98f5fe46e72 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Wed, 27 Apr 2022 19:40:50 +0200 Subject: [PATCH] replaced curl for libcurl4-nss-dev (on Debian-based distros) --- configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.sh b/configure.sh index 4bcc882..b355fa6 100644 --- a/configure.sh +++ b/configure.sh @@ -12,7 +12,7 @@ fi if [[ $DISTRO == "Arch" ]]; then COMMAND="pacman -S --needed json-c curl" elif [[ $DISTRO == "Ubuntu" ]] || [[ $DISTRO == "Debian" ]]; then - COMMAND="apt install libjson-c-dev curl" + COMMAND="apt install libjson-c-dev libcurl4-nss-dev" else # 'Unsupported' distro echo "It seems you are using unsupported distribution... Don't worry, just install https://github.com/json-c/json-c (+ CURL if you haven't installed it already) and you'll be fine."