aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2013-11-13 17:45:30 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2013-11-13 18:16:47 +0100
commit753b1e224f1d5811a621e8bc49b11fd11d5e035a (patch)
treee20001bbaf0ed251e39e4f75fe7a184015c967ec
parent82f048b64b927b2758a3157547a00603ee09d05d (diff)
build fix
Change-Id: I05dcf2d3a4e4f1e20081469382faf1912f676f8d Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
-rw-r--r--src/app/detect-toolchains/probe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/detect-toolchains/probe.cpp b/src/app/detect-toolchains/probe.cpp
index dff780b65..08f82a931 100644
--- a/src/app/detect-toolchains/probe.cpp
+++ b/src/app/detect-toolchains/probe.cpp
@@ -216,7 +216,7 @@ static void mingwProbe(Settings *settings, QList<Profile> &profiles)
profile.setValue("cpp.compilerName", QLatin1String("g++.exe"));
profile.setValue("qbs.toolchain", QStringList() << "mingw" << "gcc");
profile.setValue(QLatin1String("qbs.architecture"),
- HostOsInfo::canonicalArchitecture(QString::fromLatin1(architecture)));
+ canonicalizeArchitecture(QString::fromLatin1(architecture)));
profile.setValue(QLatin1String("qbs.endianness"),
QLatin1String("little"));
profiles << profile;