From d352359ae209b83895697f97e0944f3a551cb6e7 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Thu, 26 May 2022 18:55:56 +0200 Subject: [PATCH] added make package to configure script --- configure.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.sh b/configure.sh index b4888b1..9bbdd21 100644 --- a/configure.sh +++ b/configure.sh @@ -10,9 +10,9 @@ fi # Get COMMAND if [[ $DISTRO == "Arch" ]]; then - COMMAND="pacman -S --needed gcc json-c curl" + COMMAND="pacman -S --needed gcc json-c curl make" elif [[ $DISTRO == "Ubuntu" ]] || [[ $DISTRO == "Debian" ]]; then - COMMAND="apt install gcc libjson-c-dev libcurl4-nss-dev" + COMMAND="apt install gcc libjson-c-dev libcurl4-nss-dev make" 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."