From 692b7c1a4aa81d63f94f90d9dfad3208f709fab3 Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Tue, 20 Sep 2011 09:53:52 +1000 Subject: [PATCH] Fixed compile of lupdate. lupdate wants to use private QtDeclarative symbols. Either the symbols need to be made public, or lupdate needs to compile its own copy of the code. This commit applies the latter approach. Change-Id: I119c2d044fe2a8953867f7b6e2fc446dee65cce3 Reviewed-on: http://codereview.qt-project.org/5181 Reviewed-by: Qt Sanity Bot Reviewed-by: Toby Tomkins --- src/linguist/lupdate/lupdate.pro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/linguist/lupdate/lupdate.pro b/src/linguist/lupdate/lupdate.pro index 6ad523e..02e315e 100644 --- a/src/linguist/lupdate/lupdate.pro +++ b/src/linguist/lupdate/lupdate.pro @@ -18,8 +18,8 @@ build_all:!build_pass { include(../shared/formats.pri) include(../shared/proparser.pri) -#include($$QT.declarative.sources/qml/parser/parser.pri) -#INCLUDEPATH += $$QT.declarative.sources/qml $$QT.declarative.includes +include($$QT.declarative.sources/qml/parser/parser.pri) +INCLUDEPATH += $$QT.declarative.sources/qml $$QT.declarative.includes SOURCES += \ main.cpp \ -- 2.7.4