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

Diff for /src/usr.bin/make/job.c between version 1.15 and 1.16

version 1.15, 1999/12/06 22:28:44 version 1.16, 1999/12/16 17:27:18
Line 558 
Line 558 
      * the variables in the command.       * the variables in the command.
      */       */
     cmdNode = Lst_Member(job->node->commands, (ClientData)cmd);      cmdNode = Lst_Member(job->node->commands, (ClientData)cmd);
     cmdStart = cmd = Var_Subst(NULL, cmd, job->node, FALSE);      cmdStart = cmd = Var_Subst(cmd, job->node, FALSE);
     Lst_Replace(cmdNode, (ClientData)cmdStart);      Lst_Replace(cmdNode, (ClientData)cmdStart);
   
     cmdTemplate = "%s\n";      cmdTemplate = "%s\n";
Line 678 
Line 678 
     ClientData   cmd;      ClientData   cmd;
     ClientData   gn;      ClientData   gn;
 {  {
     cmd = (ClientData) Var_Subst(NULL, (char *) cmd, (GNode *) gn, FALSE);      cmd = (ClientData) Var_Subst((char *) cmd, (GNode *) gn, FALSE);
     (void) Lst_AtEnd(postCommands->commands, cmd);      (void) Lst_AtEnd(postCommands->commands, cmd);
     return(0);      return(0);
 }  }

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16