Просмотр исходного кода

BUG: Fixed typo resulting in confusing error message from cmExportInstallFileGenerator.

Brad King 18 лет назад
Родитель
Сommit
0dac20cd20
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Source/cmExportInstallFileGenerator.cxx

+ 1 - 1
Source/cmExportInstallFileGenerator.cxx

@@ -269,7 +269,7 @@ cmExportInstallFileGenerator
   cmOStringStream e;
   cmOStringStream e;
   e << "INSTALL(EXPORT \"" << this->Name << "\" ...) "
   e << "INSTALL(EXPORT \"" << this->Name << "\" ...) "
     << "includes target \"" << depender->GetName()
     << "includes target \"" << depender->GetName()
-    << "\" which requires target \"" << depender->GetName()
+    << "\" which requires target \"" << dependee->GetName()
     << "\" that is not in the export set.";
     << "\" that is not in the export set.";
   cmSystemTools::Error(e.str().c_str());
   cmSystemTools::Error(e.str().c_str());
 }
 }