aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 13:43:57 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 13:43:57 +0200
commit27edeaacf2433629778a7e09b9a776e084d855b6 (patch)
tree9ad63d351d01ad5a76ebd11be4b63cbe5fce2feb
parenttry full path to libclang (diff)
downloadlibrewolf-linux-27edeaacf2433629778a7e09b9a776e084d855b6.tar.gz
librewolf-linux-27edeaacf2433629778a7e09b9a776e084d855b6.tar.bz2
librewolf-linux-27edeaacf2433629778a7e09b9a776e084d855b6.zip
re-add clang-9 again
-rwxr-xr-xbinary_tarball/scripts/1_Install_Dependencies.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh
index f68edc9..9bbb637 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -13,8 +13,8 @@ DEBIAN_FRONTEND=noninteractive apt-get -qq update;
DEBIAN_FRONTEND=noninteractive apt-get -y -qq install $_DEPENDENCIES;
# Installs (non-ancient) clang
-# DEBIAN_FRONTEND=noninteractive apt install -y software-properties-common apt-transport-https ca-certificates
-# apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-9 main"
-# DEBIAN_FRONTEND=noninteractive wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add
-# DEBIAN_FRONTEND=noninteractive apt-get update
-# DEBIAN_FRONTEND=noninteractive apt-get -y install clang-9
+DEBIAN_FRONTEND=noninteractive apt install -y software-properties-common apt-transport-https ca-certificates
+apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-9 main"
+DEBIAN_FRONTEND=noninteractive wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add
+DEBIAN_FRONTEND=noninteractive apt-get update
+DEBIAN_FRONTEND=noninteractive apt-get -y install clang-9
bgstack15