summaryrefslogtreecommitdiffstats
path: root/Source/CPack/WiX/cmCPackWIXGenerator.cxx
diff options
context:
space:
mode:
authorMichael Stürmer <michael.stuermer@schaeffler.com>2016-09-09 08:53:26 (GMT)
committerNils Gladitz <nilsgladitz@gmail.com>2016-09-09 11:03:57 (GMT)
commitc0bccc51df0eda22b4a7aa5833e1204412b39fc8 (patch)
treef687044a9018819b05b2989e1844f56275c6e6d0 /Source/CPack/WiX/cmCPackWIXGenerator.cxx
parentd62a5dfc86a4d0f48f93494065f7a835c9140bb6 (diff)
downloadCMake-c0bccc51df0eda22b4a7aa5833e1204412b39fc8.zip
CMake-c0bccc51df0eda22b4a7aa5833e1204412b39fc8.tar.gz
CMake-c0bccc51df0eda22b4a7aa5833e1204412b39fc8.tar.bz2
CPackWIX: Enabled patching of WIX <Feature> tags
Diffstat (limited to 'Source/CPack/WiX/cmCPackWIXGenerator.cxx')
-rw-r--r--Source/CPack/WiX/cmCPackWIXGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CPack/WiX/cmCPackWIXGenerator.cxx b/Source/CPack/WiX/cmCPackWIXGenerator.cxx
index 85e0ae3..ba5787e 100644
--- a/Source/CPack/WiX/cmCPackWIXGenerator.cxx
+++ b/Source/CPack/WiX/cmCPackWIXGenerator.cxx
@@ -628,7 +628,7 @@ bool cmCPackWIXGenerator::CreateFeatureHierarchy(
i != ComponentGroups.end(); ++i) {
cmCPackComponentGroup const& group = i->second;
if (group.ParentGroup == 0) {
- featureDefinitions.EmitFeatureForComponentGroup(group);
+ featureDefinitions.EmitFeatureForComponentGroup(group, *this->Patch);
}
}
@@ -638,7 +638,7 @@ bool cmCPackWIXGenerator::CreateFeatureHierarchy(
cmCPackComponent const& component = i->second;
if (!component.Group) {
- featureDefinitions.EmitFeatureForComponent(component);
+ featureDefinitions.EmitFeatureForComponent(component, *this->Patch);
}
}