aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2014-04-07 13:38:19 -0400
committerJake Petroules <jake.petroules@petroules.com>2014-04-11 01:27:54 +0200
commit7343f111666c0560737f4156982f17cac1e8814b (patch)
tree25de948830262add931bb0baacf2b1ab7462d937 /share
parent9ab4669eff693e80090db5ad2f08633518f5abde (diff)
Fix linking of MSIs built from multiple WiX source files.
Task-number: QBS-541 Change-Id: I177c755ee203df1018039683da860b26dd9ec820 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'share')
-rw-r--r--share/qbs/modules/wix/WiXModule.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/modules/wix/WiXModule.qbs b/share/qbs/modules/wix/WiXModule.qbs
index a824a1e69..03ea3fb7c 100644
--- a/share/qbs/modules/wix/WiXModule.qbs
+++ b/share/qbs/modules/wix/WiXModule.qbs
@@ -375,7 +375,7 @@ Module {
}
var cmd = new Command(ModUtils.moduleProperty(product, "linkerPath"), args);
- cmd.description = "linking " + FileInfo.fileName(input.filePath);
+ cmd.description = "linking " + FileInfo.fileName(primaryOutput.filePath);
cmd.highlight = "linker";
cmd.workingDirectory = FileInfo.path(primaryOutput.filePath);
return cmd;