Update of /cvsroot/boost/boost/tools/jam/src
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15416/tools/jam_994/src

Modified Files:
      Tag: Boost_Jam_994
        make1.c 
Log Message:
Fix non-Unix case of exec to that is outputs the action headers as usual.

Index: make1.c
===================================================================
RCS file: /cvsroot/boost/boost/tools/jam/src/make1.c,v
retrieving revision 1.32.2.2
retrieving revision 1.32.2.3
diff -u -d -r1.32.2.2 -r1.32.2.3
--- make1.c     1 Jun 2007 22:56:25 -0000       1.32.2.2
+++ make1.c     2 Jun 2007 01:39:29 -0000       1.32.2.3
@@ -507,13 +507,16 @@
                if( DEBUG_MAKEQ || 
             ! ( cmd->rule->actions->flags & RULE_QUIETLY ) && DEBUG_MAKE)
            {
-                rule_name = cmd->rule->name;
-                target = lol_get(&cmd->args, 0)->string;
-#if 0
-               printf( "%s ", cmd->rule->name );
-               list_print( lol_get( &cmd->args, 0 ) );
-               printf( "\n" );
-#endif
+            rule_name = cmd->rule->name;
+            target = lol_get(&cmd->args, 0)->string;
+            
+            /* For now the deferred output is Unix only. So for others
+               we print out the action header immediately. */
+            #ifndef unix
+            printf( "%s ", cmd->rule->name );
+            list_print( lol_get( &cmd->args, 0 ) );
+            printf( "\n" );
+            #endif
            }
 
            if( DEBUG_EXEC )


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to