Przeglądaj źródła

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

Brad King 18 lat temu
rodzic
commit
0dac20cd20
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      Source/cmExportInstallFileGenerator.cxx

+ 1 - 1
Source/cmExportInstallFileGenerator.cxx

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