Call install-build-deps.sh from install-build-deps-android.sh

install-build-deps-android.sh relies on the assumption that
install-build-deps.sh has been previously invoked. At this point,
is makes sense for the Android script itself invoking its parent
dependency. 
See chromium-dev discussion: http://goo.gl/dKDX3R

BUG=
NOTRY=true

Review URL: https://codereview.chromium.org/222183002

git-svn-id: http://src.chromium.org/svn/trunk/src/build@261535 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
primiano@chromium.org 2014-04-03 21:40:19 +00:00
Родитель 5b04600b4b
Коммит 4fee05f2ba
1 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -17,11 +17,9 @@ if ! uname -m | egrep -q "i686|x86_64"; then
exit
fi
if [ "x$(id -u)" != x0 ]; then
echo "Running as non-root user."
echo "You might have to enter your password one or more times for 'sudo'."
echo
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
# The temporary directory used to store output of update-java-alternatives
TEMPDIR=$(mktemp -d)