summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-02-02 12:15:40 +0100
committerJani Heikkinen <jani.heikkinen@theqtcompany.com>2016-02-03 11:24:04 +0000
commit629e101715f3e5b58a3b0ee54295af4d957d7e78 (patch)
tree973d7166dd3ba916985caf6d88753a130604c9fb
parent999ff247a5a0ca31ba21d24933789541ca790fce (diff)
downloadqtwebkit-629e101715f3e5b58a3b0ee54295af4d957d7e78.tar.gz
Skip building on android
While it was building at some point, Android was never fully working or supported. Change-Id: I6ce77904e4db7830969664910eea143fa184f848 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
-rw-r--r--Tools/qmake/mkspecs/features/configure.prf5
1 files changed, 4 insertions, 1 deletions
diff --git a/Tools/qmake/mkspecs/features/configure.prf b/Tools/qmake/mkspecs/features/configure.prf
index 0df5ee49e..757ddfe4e 100644
--- a/Tools/qmake/mkspecs/features/configure.prf
+++ b/Tools/qmake/mkspecs/features/configure.prf
@@ -124,7 +124,10 @@ defineTest(finalizeConfigure) {
addReasonForSkippingBuild("ICU is required.")
}
production_build:blackberry {
- addReasonForSkippingBuild("Build not supported on BB10 yet.")
+ addReasonForSkippingBuild("Build not supported on BB10.")
+ }
+ production_build:android {
+ addReasonForSkippingBuild("Build not supported on Android.")
}
!gnu_thin_archives:!win32-msvc2013:!mingw:contains(QT_CONFIG, static) {
addReasonForSkippingBuild("QtWebKit cannot be built as a static library on this platform. Check your configuration in qtbase/config.summary.")