From 250c6aca3002c7a8ed9fa06c7dba999ea73a1c9a Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Wed, 27 Apr 2022 19:35:31 +0200 Subject: [PATCH] trying to fix ubuntu json-c problems --- configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.sh b/configure.sh index 331fa96..4bcc882 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-c3 curl" + COMMAND="apt install libjson-c-dev curl" 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."