aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-05-21 17:01:38 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2014-05-22 14:57:05 +0200
commit794a64df2926874009c707f1b27cfe3ba33abd9b (patch)
treef07c2f64f4ddbe7eba9dddf1fa72cdfb450cc69d /share
parentdaea3b190273aceab72c9c06616da92ae28d3393 (diff)
fix Info.plist creation for application products
The Info.plist files for different application products must be created in separate build directories. This fixes a regression introduced in 6d5de54. Change-Id: I0b65d2a16fa78811f946515355e173a2840cd18e Reviewed-by: Jake Petroules <jake.petroules@petroules.com>
Diffstat (limited to 'share')
-rw-r--r--share/qbs/imports/qbs/BundleTools/bundle-tools.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/imports/qbs/BundleTools/bundle-tools.js b/share/qbs/imports/qbs/BundleTools/bundle-tools.js
index a2950a365..ed0f5307f 100644
--- a/share/qbs/imports/qbs/BundleTools/bundle-tools.js
+++ b/share/qbs/imports/qbs/BundleTools/bundle-tools.js
@@ -143,7 +143,7 @@ function frameworksFolderPath(product, version) {
function infoPlistPath(product, version) {
var path;
if (product.type.contains("application"))
- path = ".tmp";
+ path = ".tmp/" + product.name;
else if (product.type.contains("frameworkbundle"))
path = unlocalizedResourcesFolderPath(product, version);
else if (product.type.contains("inapppurchase"))