diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-11-11 12:35:04 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-11-11 12:35:04 +0000 |
commit | dc530fd86f2e0e8527101abd7e2e9646177825db (patch) | |
tree | 6fc760e44ccc2e2e620d64e990f53e6a2a405a70 /usr.bin/make/parse.c | |
parent | 322915facec3177278e63d2d902533d68526ab68 (diff) |
Fixed version... don't see how this could work on i386, since it didn't
initialize create in main.c.
Diffstat (limited to 'usr.bin/make/parse.c')
-rw-r--r-- | usr.bin/make/parse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index 4cf8439eb44..a4c4b54fe06 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: parse.c,v 1.65 2001/11/11 06:02:06 deraadt Exp $ */ +/* $OpenBSD: parse.c,v 1.66 2001/11/11 12:35:02 espie Exp $ */ /* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */ /* @@ -1591,14 +1591,14 @@ void Parse_Init() { mainNode = NULL; - Lst_Init(parseIncPath); - Lst_Init(sysIncPath); + Static_Lst_Init(parseIncPath); + Static_Lst_Init(sysIncPath); Array_Init(&gsources, SOURCES_SIZE); Array_Init(>argets, TARGETS_SIZE); LowParse_Init(); #ifdef CLEANUP - Lst_Init(&targCmds); + Static_Lst_Init(&targCmds); #endif } |