aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 12:11:24 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 12:11:24 +0200
commit66f2440fb85c81699e09d20d77dab82718160004 (patch)
treec5a103eedd898a1e608b8fa811069778bb55d67a
parentmissing dependency: jackd (diff)
downloadlibrewolf-linux-66f2440fb85c81699e09d20d77dab82718160004.tar.gz
librewolf-linux-66f2440fb85c81699e09d20d77dab82718160004.tar.bz2
librewolf-linux-66f2440fb85c81699e09d20d77dab82718160004.zip
correct jack dependency: libjack-dev
-rwxr-xr-xbinary_tarball/scripts/1_Install_Dependencies.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh
index 6e2f393..9395dda 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -5,7 +5,7 @@ set -e
# Setup Script Variables
# _DEPENDENCIES="mercurial wget git flatpak flatpak-builder";
-_DEPENDENCIES="wget git xvfb build-essential xz-utils curl python3 jackd";
+_DEPENDENCIES="wget git xvfb build-essential xz-utils curl python3 libjack-dev";
# Installs Dependencies
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
bgstack15