summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-10-25 12:26:47 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-30 16:51:13 +0100
commitf6932516e2394bc1c619524610d880a21500105b (patch)
tree176c637698098d6787be150e1513cf67487dfeb9
parent49e8d420dad06016aaf5d29cd8e67ab7d794dbbd (diff)
query the presence of the right module
the existence of a -private module does not imply the presence of a public module any more, so we need to test for qmldevtools-private explicitly. Change-Id: Ibd691d758bcaf9c07280bd560521f4947be98f06 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
-rw-r--r--src/linguist/lupdate/lupdate.pro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/linguist/lupdate/lupdate.pro b/src/linguist/lupdate/lupdate.pro
index da4a58bb8..bd67e49a0 100644
--- a/src/linguist/lupdate/lupdate.pro
+++ b/src/linguist/lupdate/lupdate.pro
@@ -1,7 +1,7 @@
option(host_build)
QT = core-private
-qtHaveModule(qmldevtools) {
+qtHaveModule(qmldevtools-private) {
QT += qmldevtools-private
} else {
DEFINES += QT_NO_QML
@@ -23,7 +23,7 @@ SOURCES += \
java.cpp \
ui.cpp
-qtHaveModule(qmldevtools): SOURCES += qdeclarative.cpp
+qtHaveModule(qmldevtools-private): SOURCES += qdeclarative.cpp
HEADERS += \
lupdate.h \