summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallExportGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-06-30 12:20:14 (GMT)
committerKitware Robot <kwrobot@kitware.com>2022-06-30 12:20:24 (GMT)
commit5a460f32437b51cc9b765ae191957901232b3e0b (patch)
tree926a2dba9f8552109c657326ad9aef1ff04e9486 /Source/cmInstallExportGenerator.cxx
parent4c2cead0c395bae3cb45ce02daf5dac1d38d0763 (diff)
parent3fee5398bd381e3721972220a8415b62bc96b172 (diff)
downloadCMake-5a460f32437b51cc9b765ae191957901232b3e0b.zip
CMake-5a460f32437b51cc9b765ae191957901232b3e0b.tar.gz
CMake-5a460f32437b51cc9b765ae191957901232b3e0b.tar.bz2
Merge topic 'file-set-crash'
3fee5398bd install(EXPORT): Check for missing file sets at generate time Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7420
Diffstat (limited to 'Source/cmInstallExportGenerator.cxx')
-rw-r--r--Source/cmInstallExportGenerator.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmInstallExportGenerator.cxx b/Source/cmInstallExportGenerator.cxx
index 8a48aa2..b80437d 100644
--- a/Source/cmInstallExportGenerator.cxx
+++ b/Source/cmInstallExportGenerator.cxx
@@ -48,8 +48,7 @@ cmInstallExportGenerator::~cmInstallExportGenerator() = default;
bool cmInstallExportGenerator::Compute(cmLocalGenerator* lg)
{
this->LocalGenerator = lg;
- this->ExportSet->Compute(lg);
- return true;
+ return this->ExportSet->Compute(lg);
}
std::string cmInstallExportGenerator::TempDirCalculate() const