BUG: fix return when file is not found
This commit is contained in:
parent
0598697998
commit
11269bb1c4
|
@ -96,6 +96,10 @@ bool cmFindFileCommand::InitialPass(std::vector<std::string>& args)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
m_Makefile->AddCacheDefinition(args[0].c_str(),
|
||||||
|
"NOTFOUND",
|
||||||
|
helpString.c_str(),
|
||||||
|
cmCacheManager::PATH);
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue