From 2758a32bb8c6f7ea2a69cea3dcc21d1ea81c5841 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Thu, 9 Jan 2025 15:21:07 +0100 Subject: [PATCH] replaced debian-based nss-curl with openssl-curl --- configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.sh b/configure.sh index 4e2f14c..8424a7e 100755 --- a/configure.sh +++ b/configure.sh @@ -31,7 +31,7 @@ ARCH_GENTOO_COMMON="$COMMON json-c libgit2 gmp openssl" if [[ $DISTRO == "Arch" ]]; then COMMAND="pacman -S --needed --noconfirm $ARCH_GENTOO_COMMON" elif [[ $DISTRO == "Ubuntu" ]] || [[ $DISTRO == "Debian" ]]; then - COMMAND="apt-get install -y $COMMON libjson-c-dev libcurl4-nss-dev libgit2-dev libgmp-dev libssl-dev" + COMMAND="apt-get install -y $COMMON libjson-c-dev libcurl4-openssl-dev libgit2-dev libgmp-dev libssl-dev" elif [[ $DISTRO == "Gentoo" ]]; then COMMAND="emerge -vn $ARCH_GENTOO_COMMON"