mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
android-wrapper: Quiet down wget
Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
2c160534eb
commit
cf5c9d371e
1 changed files with 3 additions and 3 deletions
|
@ -55,7 +55,7 @@ fi
|
||||||
QT_DOWNLOAD_URL=https://download.qt.io/archive/qt/${QT_VERSION}/${LATEST_QT}/${QT_BINARIES}
|
QT_DOWNLOAD_URL=https://download.qt.io/archive/qt/${QT_VERSION}/${LATEST_QT}/${QT_BINARIES}
|
||||||
if [ ! -d Qt${LATEST_QT} ] ; then
|
if [ ! -d Qt${LATEST_QT} ] ; then
|
||||||
if [ ! -f ${QT_BINARIES} ] ; then
|
if [ ! -f ${QT_BINARIES} ] ; then
|
||||||
wget ${QT_DOWNLOAD_URL}
|
wget -q ${QT_DOWNLOAD_URL}
|
||||||
fi
|
fi
|
||||||
echo "In the binary installer select $(pwd)/${LATEST_QT} as install directory"
|
echo "In the binary installer select $(pwd)/${LATEST_QT} as install directory"
|
||||||
chmod +x ./${QT_BINARIES}
|
chmod +x ./${QT_BINARIES}
|
||||||
|
@ -70,14 +70,14 @@ sed -i 's/set_property(TARGET Qt5::Core PROPERTY INTERFACE_COMPILE_FEATURES cxx_
|
||||||
# next we need to get the Android SDK and NDK
|
# next we need to get the Android SDK and NDK
|
||||||
if [ ! -d $ANDROID_NDK ] ; then
|
if [ ! -d $ANDROID_NDK ] ; then
|
||||||
if [ ! -f $NDK_BINARIES ] ; then
|
if [ ! -f $NDK_BINARIES ] ; then
|
||||||
wget https://dl.google.com/android/repository/$NDK_BINARIES
|
wget -q https://dl.google.com/android/repository/$NDK_BINARIES
|
||||||
fi
|
fi
|
||||||
unzip $NDK_BINARIES
|
unzip $NDK_BINARIES
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d $ANDROID_SDK ] ; then
|
if [ ! -d $ANDROID_SDK ] ; then
|
||||||
if [ ! -f $SDK_TOOLS ] ; then
|
if [ ! -f $SDK_TOOLS ] ; then
|
||||||
wget https://dl.google.com/android/repository/$SDK_TOOLS
|
wget -q https://dl.google.com/android/repository/$SDK_TOOLS
|
||||||
fi
|
fi
|
||||||
mkdir $ANDROID_SDK
|
mkdir $ANDROID_SDK
|
||||||
pushd $ANDROID_SDK
|
pushd $ANDROID_SDK
|
||||||
|
|
Loading…
Add table
Reference in a new issue