diff options
author | Michael Stürmer <michael.stuermer@schaeffler.com> | 2016-09-09 08:53:26 (GMT) |
---|---|---|
committer | Nils Gladitz <nilsgladitz@gmail.com> | 2016-09-09 11:03:57 (GMT) |
commit | c0bccc51df0eda22b4a7aa5833e1204412b39fc8 (patch) | |
tree | f687044a9018819b05b2989e1844f56275c6e6d0 /Source/CPack/WiX/cmCPackWIXGenerator.cxx | |
parent | d62a5dfc86a4d0f48f93494065f7a835c9140bb6 (diff) | |
download | CMake-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.cxx | 4 |
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); } } |