Silence warnings from openssl

This commit is contained in:
Manish Goregaokar 2015-01-08 13:25:24 +05:30
parent 19cb0fa9e4
commit 0c0c04f3e8

View file

@ -183,6 +183,9 @@ fi
cd openssl-1.0.1j
perl -pi -e 's/install: all install_docs install_sw/install: install_docs install_sw/g' Makefile.org
./config shared -no-ssl2 -no-ssl3 -no-comp -no-hw -no-engine --openssldir=/usr/local/ssl/$ANDROID_API
make depend
make all
# The code being built isn't maintained by us, so we redirect stderr to stdout
# so that the warnings don't clutter up buildbot
./config shared -no-ssl2 -no-ssl3 -no-comp -no-hw -no-engine --openssldir=/usr/local/ssl/$ANDROID_API 2>&1
make depend 2>&1
make all 2>&1