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

This commit is contained in:
Brad King 2008-02-01 14:35:14 -05:00
parent 593c213f16
commit 0dac20cd20
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}