2
0
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:
Jurko Gospodnetić
2012-06-25 01:45:14 +00:00
parent 4a96c4dd2c
commit a06d5ddb4c

View File

@@ -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 );
}