aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlberto Mardegan <mardy@users.sourceforge.net>2019-11-07 20:20:15 +0300
committerAlberto Mardegan <mardy@users.sourceforge.net>2019-11-08 15:39:09 +0000
commit7a0be7e8cd8df5ee971a3594922838e8a2f1d3a2 (patch)
treebeb7a9666442442534f5b7de3eb14d9ae77052a7
parent3e5268b08883eb98ab539887d63985f149e02241 (diff)
MingW: fix path of windres binary
This was accidentally broken in 18a3b64ab07ade6bfc9bb068956beed2032d9b58. Change-Id: I87a106adda094500395049030f6ece652abc9dc9 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--share/qbs/modules/cpp/windows-mingw.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/modules/cpp/windows-mingw.qbs b/share/qbs/modules/cpp/windows-mingw.qbs
index fe9fd4bf8..ffed76cdd 100644
--- a/share/qbs/modules/cpp/windows-mingw.qbs
+++ b/share/qbs/modules/cpp/windows-mingw.qbs
@@ -44,7 +44,7 @@ MingwBaseModule {
property string windresName: "windres" + compilerExtension
property path windresPath: {
- var filePath = toolchainPrefix + windresName;
+ var filePath = toolchainPathPrefix + windresName;
if (!File.exists(filePath))
filePath = FileInfo.joinPaths(toolchainInstallPath, windresName);
return filePath;