diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-08-13 17:36:43 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-08-13 17:36:43 +0000 |
commit | e95968da9b43591dda06d2b0d7253f63ae62bb13 (patch) | |
tree | 2ab7e70b752bff7d52c147342b9d37756f90f3f1 /gnu/usr.bin/cvs | |
parent | 7341eb532368ea799ca4039f73493649d17bd5bb (diff) |
Don't need to explicately clean cat pages since cleandir will do that
(but do need to clean up the info pages). Also, explicately tell
configure not to use kerberos if KERBEROS is not set so configure
doesn't try to be smarter than its/our own good.
Diffstat (limited to 'gnu/usr.bin/cvs')
-rw-r--r-- | gnu/usr.bin/cvs/Makefile.bsd-wrapper | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/usr.bin/cvs/Makefile.bsd-wrapper b/gnu/usr.bin/cvs/Makefile.bsd-wrapper index f256efab9df..1629ad7a14c 100644 --- a/gnu/usr.bin/cvs/Makefile.bsd-wrapper +++ b/gnu/usr.bin/cvs/Makefile.bsd-wrapper @@ -1,14 +1,17 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.19 1996/08/13 02:45:41 deraadt Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.20 1996/08/13 17:36:42 millert Exp $ .include <bsd.own.mk> MAN= man/cvs.1 man/cvs.5 man/cvsbug.8 GNUCFLAGS= CFLAGS="${CFLAGS} -DSERVER_FLOWCONTROL" -CLEANFILES= man/cvs.cat1 man/cvs.cat5 man/cvsbug.cat8 lib/getdate.c \ - macintosh/Makefile os2/Makefile +CLEANFILES= lib/getdate.c macintosh/Makefile os2/Makefile doc/CVSvn.texi \ + doc/cvs.info doc/cvs.info-1 doc/cvs.info-2 doc/cvs.info-3 \ + doc/cvs.info-4 doc/cvs.info-5 doc/cvs.info-6 doc/cvsclient.info .if defined(KERBEROS) KRB=--with-krb4=/usr +.else +KRB=--without-krb4 .endif all: config.status |