summaryrefslogtreecommitdiffstats
path: root/Source/CPack/WiX
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-11-15 15:22:58 (GMT)
committerBrad King <brad.king@kitware.com>2019-11-15 15:38:08 (GMT)
commit7d6ab5dc5bac806a268eac55deaf5bc550aaa6d4 (patch)
treed5d621306ec833f6a5967cc31cebf013e402ee17 /Source/CPack/WiX
parentc1d5d5eb11e0260ffadda0851ac844ab46b6b179 (diff)
downloadCMake-7d6ab5dc5bac806a268eac55deaf5bc550aaa6d4.zip
CMake-7d6ab5dc5bac806a268eac55deaf5bc550aaa6d4.tar.gz
CMake-7d6ab5dc5bac806a268eac55deaf5bc550aaa6d4.tar.bz2
CPack: Restore support for custom package configuration templates
Refactoring in commit 98617f1be0 (Refactor: Move CPack internal files to `Internal/CPack/` directory, 2019-07-09, v3.16.0-rc1~449^2) accidentally changed the public-facing names of the templates. The name passed to `FindTemplate` is searched in `CMAKE_MODULE_PATH` and should not change. Remove the `Internal/CPack/` prefix on the names added by that commit. Teach `FindTemplate` to use our builtin default directly when the public-facing name is not found in `CMAKE_MODULE_PATH`. Fixes: #19979
Diffstat (limited to 'Source/CPack/WiX')
-rw-r--r--Source/CPack/WiX/cmCPackWIXGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/WiX/cmCPackWIXGenerator.cxx b/Source/CPack/WiX/cmCPackWIXGenerator.cxx
index 5fdbeab..e71a38f 100644
--- a/Source/CPack/WiX/cmCPackWIXGenerator.cxx
+++ b/Source/CPack/WiX/cmCPackWIXGenerator.cxx
@@ -610,7 +610,7 @@ std::string cmCPackWIXGenerator::GetRootFolderId() const
bool cmCPackWIXGenerator::GenerateMainSourceFileFromTemplate()
{
- std::string wixTemplate = FindTemplate("Internal/CPack/WIX.template.in");
+ std::string wixTemplate = FindTemplate("WIX.template.in");
if (GetOption("CPACK_WIX_TEMPLATE") != 0) {
wixTemplate = GetOption("CPACK_WIX_TEMPLATE");
}