BUG: fix return when file is not found

This commit is contained in:
Bill Hoffman 2001-09-17 16:34:41 -04:00
parent 0598697998
commit 11269bb1c4
1 changed files with 5 additions and 1 deletions

View File

@ -96,6 +96,10 @@ bool cmFindFileCommand::InitialPass(std::vector<std::string>& args)
return true;
}
}
return false;
m_Makefile->AddCacheDefinition(args[0].c_str(),
"NOTFOUND",
helpString.c_str(),
cmCacheManager::PATH);
return true;
}