forked from OSchip/llvm-project
Turn this error back into a warning, fixing the povray regression
llvm-svn: 18655
This commit is contained in:
parent
292e6602ac
commit
630729c97e
|
@ -50,9 +50,9 @@ LinkOneLibrary(const char*progname, Module* HeadModule,
|
||||||
// If the pathname does not exist, then simply return if we're doing a
|
// If the pathname does not exist, then simply return if we're doing a
|
||||||
// native link and give a warning if we're doing a bytecode link.
|
// native link and give a warning if we're doing a bytecode link.
|
||||||
if (!Native) {
|
if (!Native) {
|
||||||
std::cerr << progname << ": error: Cannot find library '"
|
std::cerr << progname << ": warning: Cannot find library '"
|
||||||
<< Lib << "'\n";
|
<< Lib << "'\n";
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue