summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvivek.vg <vivek.vg@samsung.com>2014-09-16 10:08:10 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-16 17:09:29 +0000
commit7e300f8e14c22e315eb1af28e9fe57c4ebcb13ef (patch)
tree5194e7aff20332e71ba59148eb05f6fdc325fa22
parentbd1cc624f6fd9761409ee8a8ac5cfd3a5896c87a (diff)
downloadchromium_src-7e300f8e14c22e315eb1af28e9fe57c4ebcb13ef.zip
chromium_src-7e300f8e14c22e315eb1af28e9fe57c4ebcb13ef.tar.gz
chromium_src-7e300f8e14c22e315eb1af28e9fe57c4ebcb13ef.tar.bz2
Pass on the args to install-build-deps.sh during android deps install.
While installing on non-ubuntu systems, the shell script, build/install-build-deps.sh has an option '--unsupported' to override the system checks. The same is not applied while installing the android deps. The parameters to install-build-deps-android.sh should be passed on to install-build-deps.sh. R=thakis@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/578503002 Cr-Commit-Position: refs/heads/master@{#295088}
-rwxr-xr-xbuild/install-build-deps-android.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/install-build-deps-android.sh b/build/install-build-deps-android.sh
index f5d288a..e740910 100755
--- a/build/install-build-deps-android.sh
+++ b/build/install-build-deps-android.sh
@@ -19,7 +19,7 @@ fi
# Install first the default Linux build deps.
"$(dirname "${BASH_SOURCE[0]}")/install-build-deps.sh" \
- --no-syms --no-arm --no-chromeos-fonts --no-nacl --no-prompt
+ --no-syms --no-arm --no-chromeos-fonts --no-nacl --no-prompt "$@"
# The temporary directory used to store output of update-java-alternatives
TEMPDIR=$(mktemp -d)