diff options
author | Deniz Bahadir <deniz@code.bahadir.email> | 2024-04-30 16:36:25 (GMT) |
---|---|---|
committer | Deniz Bahadir <deniz@code.bahadir.email> | 2024-04-30 16:36:25 (GMT) |
commit | af1d1663874277db3219ecf561e3bca2fe41e44a (patch) | |
tree | 5fc9b085266d8a01fb6ff18b26f5bcfbdd580b77 /Source/CPack/cmCPackGenerator.cxx | |
parent | a522abe5c0a771039e1101ba7029745df39b2ed2 (diff) | |
download | CMake-af1d1663874277db3219ecf561e3bca2fe41e44a.zip CMake-af1d1663874277db3219ecf561e3bca2fe41e44a.tar.gz CMake-af1d1663874277db3219ecf561e3bca2fe41e44a.tar.bz2 |
cmCPackGenerator: Fix debug message in function `PrepareGroupingKind`
Diffstat (limited to 'Source/CPack/cmCPackGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackGenerator.cxx b/Source/CPack/cmCPackGenerator.cxx index f14d0a5..4a5580c 100644 --- a/Source/CPack/cmCPackGenerator.cxx +++ b/Source/CPack/cmCPackGenerator.cxx @@ -1532,8 +1532,8 @@ int cmCPackGenerator::PrepareGroupingKind() this->componentPackageMethod = method; } - const char* method_names[] = { "ALL_COMPONENTS_IN_ONE", "IGNORE_GROUPS", - "ONE_PER_GROUP" }; + const char* method_names[] = { "ALL_COMPONENTS_IN_ONE", "IGNORE", + "ONE_PER_GROUP", "UNKNOWN" }; cmCPackLogger(cmCPackLog::LOG_VERBOSE, "[" << this->Name << "]" |