summaryrefslogtreecommitdiff
path: root/usr.bin/make/main.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-11-11 06:02:07 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-11-11 06:02:07 +0000
commit8c9f399c284d97d03f86928be0ad561e7bd80134 (patch)
treee8c8f573167f3f7b4d0229817350c60f28cb83a4 /usr.bin/make/main.c
parentc2e2c4ed28abfb5e6fcb9070ad9d9002433c68f5 (diff)
undo changes that crash on (at least) the alpha
Diffstat (limited to 'usr.bin/make/main.c')
-rw-r--r--usr.bin/make/main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c
index 1d0bfece596..94ac71e8f1e 100644
--- a/usr.bin/make/main.c
+++ b/usr.bin/make/main.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: main.c,v 1.54 2001/11/11 01:19:23 espie Exp $ */
+/* $OpenBSD: main.c,v 1.55 2001/11/11 06:02:06 deraadt Exp $ */
/* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */
/*
@@ -587,10 +587,10 @@ main(argc, argv)
esetenv("PWD", objdir);
unsetenv("CDPATH");
- Static_Lst_Init(create);
- Static_Lst_Init(&makefiles);
- Static_Lst_Init(&varstoprint);
- Static_Lst_Init(&targs);
+ Lst_Init(create);
+ Lst_Init(&makefiles);
+ Lst_Init(&varstoprint);
+ Lst_Init(&targs);
beSilent = false; /* Print commands as executed */
ignoreErrors = false; /* Pay attention to non-zero returns */