diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-03-09 15:15:16 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-03-09 15:15:16 +0000 |
commit | 95ba38abe551630b2fb6954b9bcf52e3145485bf (patch) | |
tree | 7d8c2d72faec21c08d4ee211a793f665362bf8bf /usr.bin/cvs | |
parent | 820a7dca65ee0fa2073caf0613705dda6edbc2dd (diff) |
align, and don't override the standard BINOWN and BINMODE
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/cvs/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/cvs/cvs/Makefile b/usr.bin/cvs/cvs/Makefile index a9494a82262..22baf66cfa7 100644 --- a/usr.bin/cvs/cvs/Makefile +++ b/usr.bin/cvs/cvs/Makefile @@ -1,19 +1,20 @@ -# $Id: Makefile,v 1.17 2005/03/06 21:09:00 joris Exp $ +# $OpenBSD: Makefile,v 1.18 2005/03/09 15:15:15 jfb Exp $ .PATH: ${.CURDIR}/.. -PROG=cvs -MAN=cvs.1 cvsrc.5 cvsintro.7 +PROG= cvs +MAN= cvs.1 cvsrc.5 cvsintro.7 SRCS= cvs.c add.c admin.c annotate.c buf.c checkout.c commit.c diff.c \ entries.c file.c getlog.c history.c hist.c import.c init.c log.c \ logmsg.c proto.c rcs.c rcsnum.c remove.c req.c resp.c root.c \ server.c sock.c status.c tag.c update.c util.c version.c -BINDIR=/usr/bin -BINOWN=root -BINGRP=_cvsd -BINMODE=555 +BINDIR= /usr/bin +BINOWN= root + +#BINGRP=_cvsd +#BINMODE=555 CFLAGS= -g -ggdb CFLAGS+= -Wall @@ -25,5 +26,4 @@ CFLAGS+= -DCVS INSTALL_STRIP= - .include <bsd.prog.mk> |