Missing no_link_errors check.

[SVN r48237]
This commit is contained in:
Daniel James 2008-08-19 22:27:05 +00:00
parent 4673655bfb
commit c6ec4cd94a

View File

@ -127,7 +127,7 @@ namespace boost
const path & source_path, bool no_link_errors )
// precondition: source_path.is_complete()
{
if(url.empty()) {
if(!no_link_errors && url.empty()) {
++m_invalid_errors;
error( library_name, source_path, string(name()) + " empty URL." );
return;