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

Diff for /src/usr.bin/make/engine.c between version 1.52 and 1.53

version 1.52, 2017/01/29 10:04:13 version 1.53, 2017/07/09 15:28:00
Line 784 
Line 784 
         /* always flush for other stuff */          /* always flush for other stuff */
         fflush(stdout);          fflush(stdout);
   
           /* Optimization: bypass comments entirely */
           if (*cmd == '#')
                   return false;
   
         /* Fork and execute the single command. If the fork fails, we abort.  */          /* Fork and execute the single command. If the fork fails, we abort.  */
         switch (cpid = fork()) {          switch (cpid = fork()) {
         case -1:          case -1:

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53