Skip to content

Commit

Permalink
qbs build: Fix autotest runner
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Christian Kandeler committed Jul 5, 2016
1 parent 64c7f28 commit f4c7a3b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions qtcreator.qbs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f4c7a3b

Please sign in to comment.