[BACK]Return to compat.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/compat.c between version 1.68 and 1.69

version 1.68, 2007/11/10 13:59:48 version 1.69, 2008/01/29 22:23:10
Line 127 
Line 127 
                         /* Our commands are ok, but we still have to worry                          /* Our commands are ok, but we still have to worry
                          * about the -t flag... */                           * about the -t flag... */
                         if (!touchFlag)                          if (!touchFlag)
                                 run_gnode(gn, 0);                                  run_gnode(gn);
                         else                          else
                                 Job_Touch(gn);                                  Job_Touch(gn);
                 } else                  } else
Line 216 
Line 216 
         /* If the user has defined a .BEGIN target, execute the commands          /* If the user has defined a .BEGIN target, execute the commands
          * attached to it.  */           * attached to it.  */
         if (!queryFlag) {          if (!queryFlag) {
                 if (run_gnode(begin_node, 0) == ERROR) {                  if (run_gnode(begin_node) == ERROR) {
                         printf("\n\nStop.\n");                          printf("\n\nStop.\n");
                         exit(1);                          exit(1);
                 }                  }
Line 247 
Line 247 
   
         /* If the user has defined a .END target, run its commands.  */          /* If the user has defined a .END target, run its commands.  */
         if (errors == 0)          if (errors == 0)
                 run_gnode(end_node, 0);                  run_gnode(end_node);
 }  }

Legend:
Removed from v.1.68  
changed lines
  Added in v.1.69