diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-11-18 15:48:54 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-11-18 15:48:54 +0000 |
commit | ce44b05cec443c4891c6b054467c86fdf1f2867e (patch) | |
tree | 9ec747263e044a8a12a0b7897acfc44a5e8635bc /usr.bin/cvs | |
parent | 81715b49571dbcddd4d86c9742bf3fb6b3bdef7e (diff) |
Compile with the log message code and do not install the cvs binary
with the SGID bit set
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/cvs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/cvs/Makefile b/usr.bin/cvs/cvs/Makefile index 7a4e199d777..c4460612a94 100644 --- a/usr.bin/cvs/cvs/Makefile +++ b/usr.bin/cvs/cvs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.8 2004/08/03 04:58:46 jfb Exp $ +# $Id: Makefile,v 1.9 2004/11/18 15:48:53 jfb Exp $ .PATH: ${.CURDIR}/.. @@ -6,13 +6,13 @@ PROG=cvs MAN=cvs.1 cvsrc.5 SRCS= cvs.c add.c buf.c checkout.c commit.c diff.c entries.c file.c \ - getlog.c history.c hist.c init.c log.c proto.c rcs.c rcsnum.c \ + getlog.c history.c hist.c init.c log.c logmsg.c proto.c rcs.c rcsnum.c \ req.c resp.c root.c server.c sock.c status.c update.c util.c version.c BINDIR=/usr/bin BINOWN=root BINGRP=_cvsd -BINMODE=2555 +BINMODE=555 CFLAGS+= -Wall CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes |