From: Jacob Lifshay Date: Thu, 21 Jul 2022 03:26:30 +0000 (-0700) Subject: use apt-get from scripts, not apt X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fae8e8e70ac23d34c324fa608d485f9773a5b59e;p=benchmarks.git use apt-get from scripts, not apt --- diff --git a/install-deps.sh b/install-deps.sh index d1acd39..11a9dd5 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -6,7 +6,7 @@ if [[ "$arches" == "" ]]; then fi # need to install g++ first so the local arch will get filtered out later -which g++ > /dev/null || (set -x; sudo apt install build-essential g++) +which g++ > /dev/null || (set -x; sudo apt-get install build-essential g++) needed=() @@ -32,5 +32,5 @@ which cmake > /dev/null || needed+=(cmake) which ccache > /dev/null || needed+=(ccache) if ((${#needed[@]})); then - (set -x; sudo apt install "${needed[@]}") + (set -x; sudo apt-get install "${needed[@]}") fi