From a06d5ddb4c816e36ec65d7e3f6efc69cdd0d1461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Mon, 25 Jun 2012 01:45:14 +0000 Subject: [PATCH] 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] --- v2/engine/execnt.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/v2/engine/execnt.c b/v2/engine/execnt.c index b56047c25..8f6dc5b1d 100644 --- a/v2/engine/execnt.c +++ b/v2/engine/execnt.c @@ -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 ); }