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

Diff for /src/usr.bin/make/main.c between version 1.81 and 1.82

version 1.81, 2007/09/17 11:11:30 version 1.82, 2007/09/17 12:01:17
Line 97 
Line 97 
 bool            keepgoing;      /* -k flag */  bool            keepgoing;      /* -k flag */
 bool            queryFlag;      /* -q flag */  bool            queryFlag;      /* -q flag */
 bool            touchFlag;      /* -t flag */  bool            touchFlag;      /* -t flag */
 bool            usePipes;       /* !-P flag */  
 bool            ignoreErrors;   /* -i flag */  bool            ignoreErrors;   /* -i flag */
 bool            beSilent;       /* -s flag */  bool            beSilent;       /* -s flag */
   
Line 148 
Line 147 
                 compatMake = true;                  compatMake = true;
                 return; /* XXX don't pass to submakes. */                  return; /* XXX don't pass to submakes. */
         case 'P':          case 'P':
                 usePipes = false;                  break;  /* old option */
                 break;  
         case 'S':          case 'S':
                 keepgoing = false;                  keepgoing = false;
                 break;                  break;
Line 677 
Line 675 
         queryFlag = false;              /* This is not just a check-run */          queryFlag = false;              /* This is not just a check-run */
         noBuiltins = false;             /* Read the built-in rules */          noBuiltins = false;             /* Read the built-in rules */
         touchFlag = false;              /* Actually update targets */          touchFlag = false;              /* Actually update targets */
         usePipes = true;                /* Catch child output in pipes */  
         debug = 0;                      /* No debug verbosity, please. */          debug = 0;                      /* No debug verbosity, please. */
   
         maxLocal = DEFMAXLOCAL;         /* Set default local max concurrency */          maxLocal = DEFMAXLOCAL;         /* Set default local max concurrency */

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82