aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-02-25 16:27:35 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2014-02-25 17:38:30 +0100
commit0816b8e476d20e00cbcffd1e71162adf93e85658 (patch)
tree537711cbc6285e6108fb745fb98665114e27b806 /src/app/qbs
parente455dcff532c6cc1482c844d3f1ffb7130f082ee (diff)
Do not put the plugins where the resources are.
That's not where they belong. Also make less assumptions about the file path leading to them. Ideally, we should also do the latter for the stuff in share/, but then someone would have to touch the horrific qmake code in static.pro. Task-number: QTCREATORBUG-10074 Change-Id: Ide9c4b83dcf0cd7a62b57643b79caf05662358cb Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src/app/qbs')
-rw-r--r--src/app/qbs/commandlinefrontend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/qbs/commandlinefrontend.cpp b/src/app/qbs/commandlinefrontend.cpp
index 7189a202b..09e14831f 100644
--- a/src/app/qbs/commandlinefrontend.cpp
+++ b/src/app/qbs/commandlinefrontend.cpp
@@ -143,7 +143,7 @@ void CommandLineFrontend::start()
profileName = m_settings->defaultProfile();
const Preferences prefs(m_settings, profileName);
params.setSearchPaths(prefs.searchPaths(qbsRootPath));
- params.setPluginPaths(prefs.pluginPaths(qbsRootPath));
+ params.setPluginPaths(prefs.pluginPaths(qbsRootPath + QLatin1String("/lib")));
params.setBuildRoot(buildDirectory(profileName));
params.setBuildConfiguration(baseConfig);
params.setOverriddenValues(userConfig);