diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-03-08 20:19:40 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-03-08 20:19:40 +0000 |
commit | 93f41b22c88cc93558ab60707cd82891a30afe32 (patch) | |
tree | a6e03d2a0a59503f55941547182b3b286ad46497 /usr.bin/cvs/Makefile | |
parent | 14f25c918fb2a9d31887f4a36846cfb225576c38 (diff) |
make openrcs use the worklist framework to keep track of temporary files
and remove them in case it gets interrupted.
suggested by deraadt@, ok niallo@
Diffstat (limited to 'usr.bin/cvs/Makefile')
-rw-r--r-- | usr.bin/cvs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/Makefile b/usr.bin/cvs/Makefile index e5108024a89..28a75b7d6fa 100644 --- a/usr.bin/cvs/Makefile +++ b/usr.bin/cvs/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2006/01/03 17:04:53 xsa Exp $ +# $OpenBSD: Makefile,v 1.19 2006/03/08 20:19:39 joris Exp $ PROG= cvs MAN= cvs.1 cvsignore.5 cvsrc.5 cvswrappers.5 cvsintro.7 @@ -8,7 +8,7 @@ SRCS= cvs.c add.c admin.c annotate.c buf.c checkout.c cmd.c commit.c \ compress.c date.y diff.c diff3.c edit.c entries.c fatal.c file.c \ getlog.c history.c hist.c import.c init.c log.c logmsg.c proto.c \ rcs.c rcsnum.c release.c remove.c req.c resp.c root.c server.c \ - status.c tag.c update.c util.c version.c watch.c xmalloc.c + status.c tag.c update.c util.c version.c watch.c worklist.c xmalloc.c CFLAGS= -g -ggdb CFLAGS+= -Wall |