diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2017-12-13 16:06:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2017-12-13 16:06:06 +0000 |
commit | 4eb70313840ccec5854ddddac5b1030fa86af4fe (patch) | |
tree | 42ee2e0b48588feaaecebdc523427e9ad6deea46 | |
parent | 5de437597526e0f03a1b73fa07843f841635b442 (diff) |
Enable compiler warnings; OK martijn@
-rw-r--r-- | usr.bin/sed/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/sed/Makefile b/usr.bin/sed/Makefile index 363b67ffcb2..3a4740d72c8 100644 --- a/usr.bin/sed/Makefile +++ b/usr.bin/sed/Makefile @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile,v 1.4 2010/01/04 17:50:39 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 2017/12/13 16:06:05 millert Exp $ PROG= sed SRCS= compile.c main.c misc.c process.c +WARNINGS=yes .include <bsd.prog.mk> |