mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
b1da34ca31
commit
77dec3a0c7
4 changed files with 11 additions and 4 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue