aboutsummaryrefslogtreecommitdiffstats
path: root/qtcreator.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2016-07-05 11:38:48 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2016-07-05 11:23:41 +0000
commitf4c7a3b88738314a639dd53e68773bb896041868 (patch)
treedf9481825084120bfcd141e977de0ae3bfff0d89 /qtcreator.qbs
parent64c7f28c6acc00a52c82b1eda89f5e3581ec9431 (diff)
qbs build: Fix autotest runner
Contained a syntactic and a semantic mistake. No problems were observed, because the two canceled each other out. Change-Id: I75232daa3fa2df2db338a00f561d6f54027bffed Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'qtcreator.qbs')
-rw-r--r--qtcreator.qbs3
1 files changed, 1 insertions, 2 deletions
diff --git a/qtcreator.qbs b/qtcreator.qbs
index 487f6d4723..fb549ba0a7 100644
--- a/qtcreator.qbs
+++ b/qtcreator.qbs
@@ -49,8 +49,7 @@ Project {
break;
}
}
- var fullQtcInstallDir
- = FileInfo.joinPaths(qbs.installRoot, qbs.installPrefix, qbs.InstallDir);
+ var fullQtcInstallDir = FileInfo.joinPaths(qbs.installRoot, qbs.installPrefix);
var fullLibInstallDir = FileInfo.joinPaths(fullQtcInstallDir, qtc.ide_library_path);
var fullPluginInstallDir = FileInfo.joinPaths(fullQtcInstallDir, qtc.ide_plugin_path);
path = Qt.core.binPath + ";" + fullLibInstallDir + ";" + fullPluginInstallDir