mirror of
https://github.com/boostorg/build.git
synced 2026-02-20 02:32:13 +00:00
Boost Jam code cleanup - execnt.c module no longer outputs its 'argv' related -d+4 debug output since its argv structure is just an intermediate structure contructed while preparing the final command string for passing to the CreateProcessA() Windows API. Actual final constructed command string still does get displayed as -d+4 debug output.
[SVN r79073]
This commit is contained in:
@@ -257,12 +257,6 @@ void exec_cmd
|
||||
char const * const cmd_file = prepare_command_file( cmd_local, slot );
|
||||
char const * argv[ MAXARGC + 1 ]; /* +1 for NULL */
|
||||
argv_from_shell( argv, shell, cmd_file, slot );
|
||||
if ( DEBUG_EXECCMD )
|
||||
{
|
||||
int i;
|
||||
for ( i = 0 ; argv[ i ]; ++i )
|
||||
printf( " argv[%d] = '%s'\n", i, argv[ i ] );
|
||||
}
|
||||
string_free( cmd_local );
|
||||
string_new_from_argv( cmd_local, argv );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user