diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2018-06-15 17:43:47 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2018-06-21 15:00:28 (GMT) |
commit | 48bc8b2b8226882c44faaf0a043e6fbc004241d1 (patch) | |
tree | 0891c05a9ff7e41671786b67e75686e7556b474b /Source/CPack/cmCPackFreeBSDGenerator.cxx | |
parent | 2a2829cc75be0f8a5d7b48ac79f1f3cd53d8a54a (diff) | |
download | CMake-48bc8b2b8226882c44faaf0a043e6fbc004241d1.zip CMake-48bc8b2b8226882c44faaf0a043e6fbc004241d1.tar.gz CMake-48bc8b2b8226882c44faaf0a043e6fbc004241d1.tar.bz2 |
CPack: Move internal implementation modules into Internal/CPack directory
These modules are not meant to be included by user code, they are
only an internal implementation detail for CPack. Having them live
in the main Modules directory with documentation was misleading, so
they have been moved into Modules/Internal/CPack, and their
documentation has been stripped following its move into the new
"CPack Generators" section. No-op modules which contained only
documentation have been removed entirely.
The only module that hasn't been moved is CPackIFW, because it
contains user-facing macros which would be lost if it were moved.
So, the CPackIFW module has been updated with a note explaining what
needs to (eventually) happen.
Diffstat (limited to 'Source/CPack/cmCPackFreeBSDGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackFreeBSDGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackFreeBSDGenerator.cxx b/Source/CPack/cmCPackFreeBSDGenerator.cxx index 91ae1a2..1433414 100644 --- a/Source/CPack/cmCPackFreeBSDGenerator.cxx +++ b/Source/CPack/cmCPackFreeBSDGenerator.cxx @@ -298,7 +298,7 @@ static bool has_suffix(const std::string& str, const std::string& suffix) int cmCPackFreeBSDGenerator::PackageFiles() { - if (!this->ReadListFile("CPackFreeBSD.cmake")) { + if (!this->ReadListFile("Internal/CPack/CPackFreeBSD.cmake")) { cmCPackLogger(cmCPackLog::LOG_ERROR, "Error while execution CPackFreeBSD.cmake" << std::endl); return 0; |