BUG: add better testing for notfound

This commit is contained in:
Bill Hoffman 2003-02-04 15:37:24 -05:00
parent c8daa038c2
commit e3d93e22f8

View File

@ -299,7 +299,8 @@ void cmGlobalGenerator::Configure()
for(cmTarget::LinkLibraries::iterator lib = libs.begin();
lib != libs.end(); ++lib)
{
if(cmSystemTools::IsNOTFOUND(lib->first.c_str()))
if(lib->first.size() > 9 &&
cmSystemTools::IsNOTFOUND(lib->first.c_str()))
{
std::string varName = lib->first.substr(0, lib->first.size()-9);
notFoundMap.insert(varName);
@ -311,7 +312,8 @@ void cmGlobalGenerator::Configure()
for( std::vector<std::string>::iterator lib = incs.begin();
lib != incs.end(); ++lib)
{
if(cmSystemTools::IsNOTFOUND(lib->c_str()))
if(lib->size() > 9 &&
cmSystemTools::IsNOTFOUND(lib->c_str()))
{
std::string varName = lib->substr(0, lib->size()-9);
notFoundMap.insert(varName);