summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2023-12-26 16:05:37 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2023-12-26 16:07:15 (GMT)
commit4962eba9817fd46a69cd115d1fdd48a7737072aa (patch)
tree786ac2b05fa5e4161effa1e5ad23a3ce1464fa2a
parent73d016013437fb3737941fdfb72a54cafb380eb1 (diff)
downloadCMake-4962eba9817fd46a69cd115d1fdd48a7737072aa.zip
CMake-4962eba9817fd46a69cd115d1fdd48a7737072aa.tar.gz
CMake-4962eba9817fd46a69cd115d1fdd48a7737072aa.tar.bz2
cmDyndepCollation: clarify CXX_MODULES-without-BMI error message
Fixes: #25493
-rw-r--r--Source/cmDyndepCollation.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmDyndepCollation.cxx b/Source/cmDyndepCollation.cxx
index 75f88b2..edf56ff 100644
--- a/Source/cmDyndepCollation.cxx
+++ b/Source/cmDyndepCollation.cxx
@@ -493,7 +493,8 @@ bool cmDyndepCollation::WriteDyndepMetadata(
if (!has_provides) {
cmSystemTools::Error(
cmStrCat("Output ", object.PrimaryOutput,
- " is of type `CXX_MODULES` but does not provide a module"));
+ " is of type `CXX_MODULES` but does not provide a module "
+ "interface unit or partition"));
result = false;
continue;
}