aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2017-10-18 15:57:47 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2017-10-18 14:22:42 +0000
commitcef861d4b5c46e4058dee52fe86406a10928445c (patch)
treef748194b5254e392305702f90bfc00430063a9b4
parentc005ae0a1629a2d7adc7ff6d6b292775008adaf8 (diff)
Fix detection of binutils location
The binutils probe's condition was reversed in a refactoring accident (commit 2856d903). Change-Id: I52f01bd98a75c31fb8cd3d51226aa90b2b1c866d Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--share/qbs/modules/cpp/GenericGCC.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/modules/cpp/GenericGCC.qbs b/share/qbs/modules/cpp/GenericGCC.qbs
index b6bc10003..86fd64874 100644
--- a/share/qbs/modules/cpp/GenericGCC.qbs
+++ b/share/qbs/modules/cpp/GenericGCC.qbs
@@ -69,7 +69,7 @@ CppModule {
Probes.BinaryProbe {
id: binutilsProbe
- condition: File.exists(archiverPath)
+ condition: !File.exists(archiverPath)
names: Gcc.toolNames([archiverName, assemblerName, linkerName, nmName,
objcopyName, stripName], toolchainPrefix)
}