[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.58 and 1.59

version 1.58, 2008/11/04 07:22:36 version 1.59, 2009/05/10 11:07:37
Line 374 
Line 374 
 {  {
         GNode   *gn;          GNode   *gn;
   
         while (!Job_Full() && (gn = Array_Pop(&toBeMade)) != NULL) {          while (can_start_job() && (gn = Array_Pop(&toBeMade)) != NULL) {
                 if (try_to_make_node(gn))                  if (try_to_make_node(gn))
                         return true;                          return true;
         }          }

Legend:
Removed from v.1.58  
changed lines
  Added in v.1.59