aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/imports/qbs/Probes/GccBinaryProbe.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'share/qbs/imports/qbs/Probes/GccBinaryProbe.qbs')
-rw-r--r--share/qbs/imports/qbs/Probes/GccBinaryProbe.qbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/qbs/imports/qbs/Probes/GccBinaryProbe.qbs b/share/qbs/imports/qbs/Probes/GccBinaryProbe.qbs
index 1db1291cc..6ebaff8be 100644
--- a/share/qbs/imports/qbs/Probes/GccBinaryProbe.qbs
+++ b/share/qbs/imports/qbs/Probes/GccBinaryProbe.qbs
@@ -10,7 +10,7 @@ BinaryProbe {
// Outputs
property string tcPrefix
- platformPaths: {
+ platformSearchPaths: {
var paths = base;
if (qbs.targetOS.contains("windows") && qbs.hostOS.contains("windows"))
paths.push(FileInfo.joinPaths(
@@ -47,8 +47,8 @@ BinaryProbe {
}
configure: {
- var result = PathProbeConfigure.configure(names, nameSuffixes, nameFilter, pathPrefixes,
- pathSuffixes, platformPaths, environmentPaths,
+ var result = PathProbeConfigure.configure(names, nameSuffixes, nameFilter, searchPaths,
+ pathSuffixes, platformSearchPaths, environmentPaths,
platformEnvironmentPaths, pathListSeparator);
found = result.found;
candidatePaths = result.candidatePaths;