summaryrefslogtreecommitdiff
path: root/contrib/android/install_tools.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/android/install_tools.sh')
-rwxr-xr-xcontrib/android/install_tools.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/contrib/android/install_tools.sh b/contrib/android/install_tools.sh
deleted file mode 100755
index 45aff601e2d7..000000000000
--- a/contrib/android/install_tools.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env bash
-
-# This step should install tools needed for all packages - OpenSSL and LDNS
-echo "Updating tools"
-sudo apt-get -qq update
-sudo apt-get -qq install --no-install-recommends curl wget tar zip unzip patch perl openjdk-8-jdk autoconf automake libtool pkg-config
-
-# Android builds run config.guess early to determine BUILD and HOST. We need to add config.guess
-# and config.sub now. Later, bootstrap_ldns.sh will handle the complete bootstrap of LDNS.
-
-echo "Adding config.guess"
-if ! wget -q -O config.guess 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD'; then
- echo "Failed to download config.guess"
-fi
-
-echo "Adding config.sub"
-if ! wget -q -O config.sub 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD'; then
- echo "Failed to download config.sub"
-fi
-
-echo "Fixing config permissions"
-chmod a+x config.guess config.sub
-if [ -n "$(command -v xattr 2>/dev/null)" ]; then
- xattr -d com.apple.quarantine config.guess 2>/dev/null
- xattr -d com.apple.quarantine config.sub 2>/dev/null
-fi