From edccf99f4380beffa13657862646953d961cfc0b Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Mon, 20 Feb 2023 12:59:24 +0200 Subject: [PATCH] Fix multibundle module. --- qbs/modules/multibundle/multibundle.qbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbs/modules/multibundle/multibundle.qbs b/qbs/modules/multibundle/multibundle.qbs index 87b722b2d..201a3a38c 100644 --- a/qbs/modules/multibundle/multibundle.qbs +++ b/qbs/modules/multibundle/multibundle.qbs @@ -98,7 +98,7 @@ Module { cmd.description = "Copying auxiliary binary into bundle"; cmd.highlight = "filegen"; - const fileName = product.bundle.isBundle ? product.bundle.bundleName : inputs["dynamiclibrary"][0].fileName; + const fileName = product.bundle.isBundle ? product.bundle.bundleName : inputs["application"][0].fileName; const installRoot = product.qbs.installRoot + product.qbs.installPrefix + "/" + product.buildconfig.installAppPath; var data = []; product.multibundle.targetApps.forEach(function(targetApp) {