]> sigrok.org Git - sigrok-util.git/commitdiff
sigrok-cross-android: Silence the Qt build.
authorUwe Hermann <redacted>
Fri, 27 Feb 2015 11:37:00 +0000 (12:37 +0100)
committerUwe Hermann <redacted>
Fri, 27 Feb 2015 14:50:59 +0000 (15:50 +0100)
This is a huge project and doing a verbose build yields many MByte
of console output / logs which are usually not required/interesting.

cross-compile/android/sigrok-cross-android

index 4cf2a5f06c81b2664e6951195c25aecf1e173707..976d7cea284fad0429005ad8f9038a649cc510f0 100755 (executable)
@@ -422,7 +422,7 @@ $WGET http://download.qt-project.org/official_releases/qt/${VER_QT%.*}/${VER_QT}
 tar xfz qt-everywhere-opensource-src-${VER_QT}.tar.gz
 cd qt-everywhere-opensource-src-${VER_QT}
 patch -p1 < ../../android-qt.patch
-CC= CXX= ./configure --prefix="$PREFIX" -developer-build -xplatform android-g++ -nomake tests -nomake examples -android-sdk "$ANDROID_SDK" -android-ndk "$ANDROID_NDK" -android-ndk-host "$NDK_HOST" -android-arch "$TARGET_ARCH" -android-toolchain-version "$NDK_TOOLCHAIN_VERSION" -skip qttranslations -skip qtwebkit -skip qtserialport -skip qtwebkit-examples -skip qtlocation -skip qtconnectivity -opensource -confirm-license
+CC= CXX= ./configure --prefix="$PREFIX" -developer-build -xplatform android-g++ -nomake tests -nomake examples -android-sdk "$ANDROID_SDK" -android-ndk "$ANDROID_NDK" -android-ndk-host "$NDK_HOST" -android-arch "$TARGET_ARCH" -android-toolchain-version "$NDK_TOOLCHAIN_VERSION" -skip qttranslations -skip qtwebkit -skip qtserialport -skip qtwebkit-examples -skip qtlocation -skip qtconnectivity -opensource -confirm-license -silent
 make module-qtbase module-qtandroidextras module-qtsvg module-qtimageformats $PARALLEL $V
 make install $V
 cd ..