summaryrefslogtreecommitdiffstats
path: root/Source/cmExportFileGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-07-26 10:12:13 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-07-26 11:10:06 (GMT)
commitff3d5fae5d8549ff1966acc1f883cc1ddb061d61 (patch)
tree9b9f5cd2718c40ecfd2ca68d0eaf7abcee3e8c9f /Source/cmExportFileGenerator.cxx
parent79a7a81327d4e5b7cf9e16021ad4dc98888969eb (diff)
downloadCMake-ff3d5fae5d8549ff1966acc1f883cc1ddb061d61.zip
CMake-ff3d5fae5d8549ff1966acc1f883cc1ddb061d61.tar.gz
CMake-ff3d5fae5d8549ff1966acc1f883cc1ddb061d61.tar.bz2
Export: Fix typo of LINK_INTERFACE_LIBRARIES.
Refer correctly to the old property, not the new one.
Diffstat (limited to 'Source/cmExportFileGenerator.cxx')
-rw-r--r--Source/cmExportFileGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx
index 4de1aae..ab9744b 100644
--- a/Source/cmExportFileGenerator.cxx
+++ b/Source/cmExportFileGenerator.cxx
@@ -636,7 +636,7 @@ cmExportFileGenerator
cmMakefile *mf = target->GetMakefile();
cmOStringStream e;
e << "Target \"" << target->GetName() << "\" has policy CMP0022 enabled, "
- "but also has old-style INTERFACE_LINK_LIBRARIES properties "
+ "but also has old-style LINK_INTERFACE_LIBRARIES properties "
"populated, but it was exported without the "
"EXPORT_LINK_INTERFACE_LIBRARIES to export the old-style properties";
mf->IssueMessage(cmake::FATAL_ERROR, e.str());