aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qt4projectmanager/qmldebugginglibrary.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2011-04-18 14:13:18 +0200
committercon <qtc-committer@nokia.com>2011-04-18 15:38:03 +0200
commitf86c9b65726e879652561e6db04e6688bc48f48c (patch)
tree955e5213c9faab375f828e344997047638ca7efd /src/plugins/qt4projectmanager/qmldebugginglibrary.cpp
parentbf511a2bcb3d462b4c8ee286b6b64ce85a5f8755 (diff)
QmlDump: Ensure that qmldump is found in QtSDKv2.2.0-rc1
We ship a precompiled qmldump in the Qt SDK because the Qt versions don't have private headers. However, the logic in buildablehelperlibrary by default rejects any build that is older than the latest changes to the qmldump source code files; allow Qt Creator to pick up the (maybe outdated) qmldump nevertheless if no private headers are installed. Reviewed-by: ckamm Task-number: QTCREATORBUG-4578
Diffstat (limited to 'src/plugins/qt4projectmanager/qmldebugginglibrary.cpp')
-rw-r--r--src/plugins/qt4projectmanager/qmldebugginglibrary.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qt4projectmanager/qmldebugginglibrary.cpp b/src/plugins/qt4projectmanager/qmldebugginglibrary.cpp
index f7d33b6ecf..379275c73b 100644
--- a/src/plugins/qt4projectmanager/qmldebugginglibrary.cpp
+++ b/src/plugins/qt4projectmanager/qmldebugginglibrary.cpp
@@ -62,7 +62,7 @@ QString QmlDebuggingLibrary::libraryByInstallData(const QString &qtInstallData,
}
binFilenames << QLatin1String("libQmlJSDebugger.a");
- return byInstallDataHelper(sourcePath(), sourceFileNames(), directories, binFilenames);
+ return byInstallDataHelper(sourcePath(), sourceFileNames(), directories, binFilenames, false);
}
bool QmlDebuggingLibrary::canBuild(const QtVersion *qtVersion)