[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.23 and 1.24

version 1.23, 1999/12/16 17:27:18 version 1.24, 1999/12/18 02:11:27
Line 587 
Line 587 
   
         setenv("PWD", objdir, 1);          setenv("PWD", objdir, 1);
   
         create = Lst_Init(FALSE);          create = Lst_Init();
         makefiles = Lst_Init(FALSE);          makefiles = Lst_Init();
         printVars = FALSE;          printVars = FALSE;
         variables = Lst_Init(FALSE);          variables = Lst_Init();
         beSilent = FALSE;               /* Print commands as executed */          beSilent = FALSE;               /* Print commands as executed */
         ignoreErrors = FALSE;           /* Pay attention to non-zero returns */          ignoreErrors = FALSE;           /* Pay attention to non-zero returns */
         noExecute = FALSE;              /* Execute all commands */          noExecute = FALSE;              /* Execute all commands */
Line 709 
Line 709 
         if (!noBuiltins) {          if (!noBuiltins) {
                 LstNode ln;                  LstNode ln;
   
                 sysMkPath = Lst_Init (FALSE);                  sysMkPath = Lst_Init();
                 Dir_Expand (_PATH_DEFSYSMK, sysIncPath, sysMkPath);                  Dir_Expand (_PATH_DEFSYSMK, sysIncPath, sysMkPath);
                 if (Lst_IsEmpty(sysMkPath))                  if (Lst_IsEmpty(sysMkPath))
                         Fatal("make: no system rules (%s).", _PATH_DEFSYSMK);                          Fatal("make: no system rules (%s).", _PATH_DEFSYSMK);

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24