Add a hook for disabling cvs and collect a few similar options together.

(We do this on freefall as we use a tweaked /usr/bin/cvs wrapper)
This commit is contained in:
Peter Wemm 1999-09-15 03:52:17 +00:00
parent b1da34ca31
commit 77dec3a0c7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=51299
4 changed files with 11 additions and 4 deletions

View File

@ -26,8 +26,9 @@
# To build perl with thread support
#PERL_THREADED= true
#
# To avoid building sendmail
# To avoid building various parts of the base system:
#NO_SENDMAIL= true
#NO_CVS= true
#
# To compile just the kernel with special optimisations, you should use
# this instead of CFLAGS (which is not applicable to kernel builds anyway):

View File

@ -26,8 +26,9 @@
# To build perl with thread support
#PERL_THREADED= true
#
# To avoid building sendmail
# To avoid building various parts of the base system:
#NO_SENDMAIL= true
#NO_CVS= true
#
# To compile just the kernel with special optimisations, you should use
# this instead of CFLAGS (which is not applicable to kernel builds anyway):

View File

@ -1,8 +1,12 @@
# $FreeBSD$
SUBDIR= awk bc binutils bison cc cpio cvs dc dialog diff diff3 gperf \
SUBDIR= awk bc binutils bison cc cpio dc dialog diff diff3 gperf \
grep groff gzip man patch ptx rcs sdiff send-pr sort tar texinfo
.if !defined(NO_CVS)
SUBDIR+=cvs
.endif
.if ${MACHINE_ARCH} == "i386"
SUBDIR+=as ld
.endif

View File

@ -26,8 +26,9 @@
# To build perl with thread support
#PERL_THREADED= true
#
# To avoid building sendmail
# To avoid building various parts of the base system:
#NO_SENDMAIL= true
#NO_CVS= true
#
# To compile just the kernel with special optimisations, you should use
# this instead of CFLAGS (which is not applicable to kernel builds anyway):