aboutsummaryrefslogtreecommitdiffstats
path: root/changelogs
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2018-01-31 08:10:25 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2018-01-31 13:50:32 +0000
commit3953e11a8491323bed6d45d3ced59f15b87a96a8 (patch)
tree41472c61fdc9da3ddf3d62410f908198fb696091 /changelogs
parent1474042d931922b81d3a09e95c738e7feafa1a44 (diff)
Fix parameter extraction for Depends items within Export/Module items
Parameters of Depends items within Export items were ignored. Project { Product { name: "foo" Export { Depends { name: "dep"; cpp.link: false } // dep } } Product { name: "bar" Depends { name: "foo" } } } The instance of foo in bar has an Depends child depinst. The item depinst was created by createChildInstances and is an empty item with the prototype dep, which is the Depends item in foo's Export item. Thus, extractParameters must look up properties in the deepest prototype (dep), not in the Depends item itself (depinst). Unfortunately, this fix triggers SOFT ASSERT: varValue in ../../../../1.10/src/lib/corelib/language/evaluatorscriptclass.cpp:574 which will be fixed separately. Task-number: QBS-1287 Change-Id: I56b5464aad2578bb5ddab2e831fc607d6634ac8d Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'changelogs')
-rw-r--r--changelogs/changes-1.10.1.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelogs/changes-1.10.1.md b/changelogs/changes-1.10.1.md
index d3be09e65..d0f68a898 100644
--- a/changelogs/changes-1.10.1.md
+++ b/changelogs/changes-1.10.1.md
@@ -8,3 +8,4 @@
* Fix access to module instances in dependency parameters (QBS-1253).
* Fix race condition when creating Inno Setup, NSIS, or WiX installers.
* Fix release builds for Android with NDK r12 and above (QBS-1256).
+* Fix parametrized dependencies in Export and Module items (QBS-1287).