diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-12-30 21:34:25 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-12-30 21:34:25 +0000 |
commit | bccfa47f3507b55b95f8d81fe74a05fbfe822df8 (patch) | |
tree | ad6c0f9a121a97b8ae2c9060f2b4cd22a1d11df2 /bin/ksh/Makefile | |
parent | 6eb290c167c4a5f9543379bf27e0960d0a22f85f (diff) |
Remove -Wno-unused form CFLAGS and kill some unused vars found as a result of
that. ok millert@
Diffstat (limited to 'bin/ksh/Makefile')
-rw-r--r-- | bin/ksh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/Makefile b/bin/ksh/Makefile index 5613e8965fa..c6d815ad2cc 100644 --- a/bin/ksh/Makefile +++ b/bin/ksh/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.21 2004/12/22 17:47:03 millert Exp $ +# $OpenBSD: Makefile,v 1.22 2004/12/30 21:34:24 otto Exp $ PROG= ksh SRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \ @@ -6,7 +6,7 @@ SRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \ main.c misc.c path.c shf.c syn.c table.c trap.c \ tree.c tty.c var.c version.c vi.c -DEFS= -Wall -Wno-unused +DEFS= -Wall CFLAGS+=${DEFS} -I. -I${.CURDIR} MAN= ksh.1 sh.1 |