mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 01:12:13 +00:00
Fix "-q" option, thanks to Markus Scherschanski.
* jam_src/make1.c (make1d): Quickquit in all cases, not only when
DEBUG_MAKE is set.
[SVN r14277]
This commit is contained in:
@@ -395,10 +395,11 @@ make1d(
|
||||
printf( "...failed %s ", cmd->rule->name );
|
||||
list_print( lol_get( &cmd->args, 0 ) );
|
||||
printf( "...\n" );
|
||||
|
||||
if( globs.quitquick ) ++intr;
|
||||
}
|
||||
|
||||
if (status == EXEC_CMD_FAIL)
|
||||
if( globs.quitquick ) ++intr;
|
||||
|
||||
/* If the command was interrupted or failed and the target */
|
||||
/* is not "precious", remove the targets */
|
||||
|
||||
|
||||
@@ -395,10 +395,11 @@ make1d(
|
||||
printf( "...failed %s ", cmd->rule->name );
|
||||
list_print( lol_get( &cmd->args, 0 ) );
|
||||
printf( "...\n" );
|
||||
|
||||
if( globs.quitquick ) ++intr;
|
||||
}
|
||||
|
||||
if (status == EXEC_CMD_FAIL)
|
||||
if( globs.quitquick ) ++intr;
|
||||
|
||||
/* If the command was interrupted or failed and the target */
|
||||
/* is not "precious", remove the targets */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user