mirror of
https://github.com/boostorg/boost.git
synced 2025-04-14 00:50:40 +00:00
Don't choke on directory creation errors by bjam.
[SVN r24345]
This commit is contained in:
parent
1bee5b177d
commit
23867fd344
1 changed files with 1 additions and 1 deletions
|
@ -594,7 +594,7 @@ int cpp_main( int argc, char ** argv )
|
|||
}
|
||||
|
||||
// bjam indicates some prior dependency failed by a "...skipped" message
|
||||
else if ( line.find( "...skipped <" ) != string::npos )
|
||||
else if ( line.find( "...skipped <" ) != string::npos && line.find( "<directory-grist>" ) == string::npos)
|
||||
{
|
||||
mgr.stop_message( content );
|
||||
content.clear();
|
||||
|
|
Loading…
Add table
Reference in a new issue