[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.44 and 1.45

version 1.44, 2000/10/13 08:29:20 version 1.45, 2000/11/24 14:36:34
Line 117 
Line 117 
 #define MAKEFLAGS       ".MAKEFLAGS"  #define MAKEFLAGS       ".MAKEFLAGS"
   
 LIST                    create;         /* Targets to be made */  LIST                    create;         /* Targets to be made */
 time_t                  now = OUT_OF_DATE;/* Time at start of make */  TIMESTAMP               now;            /* Time at start of make */
 GNode                   *DEFAULT;       /* .DEFAULT node */  GNode                   *DEFAULT;       /* .DEFAULT node */
 Boolean                 allPrecious;    /* .PRECIOUS given on line by itself */  Boolean                 allPrecious;    /* .PRECIOUS given on line by itself */
   
Line 530 
Line 530 
                                         /* avoid faults on read-only strings */                                          /* avoid faults on read-only strings */
         static char syspath[] = _PATH_DEFSYSPATH;          static char syspath[] = _PATH_DEFSYSPATH;
   
           set_out_of_date(now);
 #ifdef RLIMIT_NOFILE  #ifdef RLIMIT_NOFILE
         /*          /*
          * get rid of resource limit on file descriptors           * get rid of resource limit on file descriptors
Line 716 
Line 717 
         Suff_Init();          Suff_Init();
   
         DEFAULT = NULL;          DEFAULT = NULL;
         (void)time(&now);          grab(now);
   
         /*          /*
          * Set up the .TARGETS variable to contain the list of targets to be           * Set up the .TARGETS variable to contain the list of targets to be

Legend:
Removed from v.1.44  
changed lines
  Added in v.1.45