summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-03-07 18:43:09 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-03-07 18:43:09 +0000
commite5f59c5f76c4db1438ae5ffc7764705e7d3cb47a (patch)
treead37da8c02014197cdbc00ef046f21e79aaa5d83 /usr.bin/make
parent4cc3588e5a59da071b4630b8abb38de9e6d67fb1 (diff)
Add -Wno-char-subscripts to CFLAGS
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile
index 27e3624aca6..e5ed07d8d27 100644
--- a/usr.bin/make/Makefile
+++ b/usr.bin/make/Makefile
@@ -1,7 +1,7 @@
-# $OpenBSD: Makefile,v 1.6 1997/09/21 11:49:52 deraadt Exp $
+# $OpenBSD: Makefile,v 1.7 1998/03/07 18:43:08 millert Exp $
PROG= make
-CFLAGS+= -I${.CURDIR} -Wall -Wno-unused #-Wmissing-prototypes -Wstrict-prototypes
+CFLAGS+= -I${.CURDIR} -Wall -Wno-char-subscripts -Wno-unused #-Wmissing-prototypes -Wstrict-prototypes
SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
make.c parse.c str.c suff.c targ.c var.c util.c
SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \