summaryrefslogtreecommitdiff
path: root/usr.bin/grep
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-06-25 15:00:05 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-06-25 15:00:05 +0000
commit0419f5c9bc5d99debcee6bae578f3b8a3eb6643f (patch)
treeea2a67141ce4ee58399e47d1d16a546ee4cab5a6 /usr.bin/grep
parent06e36328b70575957965fd86fa3be7c5fcbe9246 (diff)
-pedantic is not useful in a C99 world so kill it. OK deraadt@
Diffstat (limited to 'usr.bin/grep')
-rw-r--r--usr.bin/grep/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/grep/Makefile b/usr.bin/grep/Makefile
index 9f2fb3de315..5a1d63a5188 100644
--- a/usr.bin/grep/Makefile
+++ b/usr.bin/grep/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.5 2003/06/23 07:52:18 deraadt Exp $
+# $OpenBSD: Makefile,v 1.6 2003/06/25 15:00:04 millert Exp $
PROG= grep
SRCS= binary.c file.c grep.c mmfile.c queue.c util.c
@@ -14,7 +14,7 @@ MLINKS= grep.1 egrep.1 \
grep.1 zegrep.1 \
grep.1 zfgrep.1
-CFLAGS+= -Wall -pedantic
+CFLAGS+= -Wall
LDADD= -lz
DPADD= ${LIBZ}