aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball/scripts/1_Install_Dependencies.sh
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 13:09:14 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 13:09:14 +0200
commit96ffa1c3ab28233df204607f16ec3f221af58ed3 (patch)
treef5cbcc05aca836a4ee3d2f308aa2a3f1ba430449 /binary_tarball/scripts/1_Install_Dependencies.sh
parentlibclang-path (diff)
downloadlibrewolf-linux-96ffa1c3ab28233df204607f16ec3f221af58ed3.tar.gz
librewolf-linux-96ffa1c3ab28233df204607f16ec3f221af58ed3.tar.bz2
librewolf-linux-96ffa1c3ab28233df204607f16ec3f221af58ed3.zip
interfere less with what mach bootstrap wants to do
Diffstat (limited to 'binary_tarball/scripts/1_Install_Dependencies.sh')
-rwxr-xr-xbinary_tarball/scripts/1_Install_Dependencies.sh11
1 files changed, 5 insertions, 6 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh
index 9395dda..f68edc9 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -13,9 +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