=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/main.c,v retrieving revision 1.23 retrieving revision 1.24 diff -c -r1.23 -r1.24 *** src/usr.bin/make/main.c 1999/12/16 17:27:18 1.23 --- src/usr.bin/make/main.c 1999/12/18 02:11:27 1.24 *************** *** 1,4 **** ! /* $OpenBSD: main.c,v 1.23 1999/12/16 17:27:18 espie Exp $ */ /* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: main.c,v 1.24 1999/12/18 02:11:27 espie Exp $ */ /* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */ /* *************** *** 49,55 **** #if 0 static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 3/19/94"; #else ! static char rcsid[] = "$OpenBSD: main.c,v 1.23 1999/12/16 17:27:18 espie Exp $"; #endif #endif /* not lint */ --- 49,55 ---- #if 0 static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 3/19/94"; #else ! static char rcsid[] = "$OpenBSD: main.c,v 1.24 1999/12/18 02:11:27 espie Exp $"; #endif #endif /* not lint */ *************** *** 587,596 **** setenv("PWD", objdir, 1); ! create = Lst_Init(FALSE); ! makefiles = Lst_Init(FALSE); printVars = FALSE; ! variables = Lst_Init(FALSE); beSilent = FALSE; /* Print commands as executed */ ignoreErrors = FALSE; /* Pay attention to non-zero returns */ noExecute = FALSE; /* Execute all commands */ --- 587,596 ---- setenv("PWD", objdir, 1); ! create = Lst_Init(); ! makefiles = Lst_Init(); printVars = FALSE; ! variables = Lst_Init(); beSilent = FALSE; /* Print commands as executed */ ignoreErrors = FALSE; /* Pay attention to non-zero returns */ noExecute = FALSE; /* Execute all commands */ *************** *** 709,715 **** if (!noBuiltins) { LstNode ln; ! sysMkPath = Lst_Init (FALSE); Dir_Expand (_PATH_DEFSYSMK, sysIncPath, sysMkPath); if (Lst_IsEmpty(sysMkPath)) Fatal("make: no system rules (%s).", _PATH_DEFSYSMK); --- 709,715 ---- if (!noBuiltins) { LstNode ln; ! sysMkPath = Lst_Init(); Dir_Expand (_PATH_DEFSYSMK, sysIncPath, sysMkPath); if (Lst_IsEmpty(sysMkPath)) Fatal("make: no system rules (%s).", _PATH_DEFSYSMK);