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

Diff for /src/usr.bin/make/make.c between version 1.10 and 1.11

version 1.10, 1999/12/18 21:53:32 version 1.11, 1999/12/18 21:56:07
Line 673 
Line 673 
 {  {
     register GNode      *gn;      register GNode      *gn;
   
     while (!Job_Full() && !Lst_IsEmpty (toBeMade)) {      while (!Job_Full() && (gn = (GNode *)Lst_DeQueue(toBeMade)) != NULL) {
         gn = (GNode *) Lst_DeQueue (toBeMade);  
         if (DEBUG(MAKE)) {          if (DEBUG(MAKE)) {
             printf ("Examining %s...", gn->name);              printf ("Examining %s...", gn->name);
         }          }
Line 835 
Line 834 
      * be looked at in a minute, otherwise we add its children to our queue       * be looked at in a minute, otherwise we add its children to our queue
      * and go on about our business.       * and go on about our business.
      */       */
     while (!Lst_IsEmpty (examine)) {      while ((gn = (GNode *)Lst_DeQueue(examine)) != NULL) {
         gn = (GNode *) Lst_DeQueue (examine);  
   
         if (!gn->make) {          if (!gn->make) {
             gn->make = TRUE;              gn->make = TRUE;

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11