diff options
author | 2003-06-25 15:00:04 +0000 | |
---|---|---|
committer | 2003-06-25 15:00:04 +0000 | |
commit | 40756b8e8b70dbbf8ce92cf5cb907b571327868c (patch) | |
tree | d1df8d09520a76ce9523dbf0fcdbdc70e3da0f24 | |
parent | kill unused strcpy. Let the preprocessor compute the right size, as suggested (diff) | |
download | wireguard-openbsd-40756b8e8b70dbbf8ce92cf5cb907b571327868c.tar.xz wireguard-openbsd-40756b8e8b70dbbf8ce92cf5cb907b571327868c.zip |
-pedantic is not useful in a C99 world so kill it. OK deraadt@
-rw-r--r-- | usr.bin/grep/Makefile | 4 |
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} |