mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Add option WITHOUT_VI to not build/install vi. vi was the largest
binary without a knob to turn it off.
This commit is contained in:
parent
f6092768b1
commit
d6d1ee211a
3 changed files with 7 additions and 1 deletions
|
|
@ -166,6 +166,7 @@ __DEFAULT_YES_OPTIONS = \
|
|||
UNBOUND \
|
||||
USB \
|
||||
UTMPX \
|
||||
VI \
|
||||
WIRELESS \
|
||||
WPA_SUPPLICANT_EAPOL \
|
||||
ZFS \
|
||||
|
|
|
|||
2
tools/build/options/WITHOUT_VI
Normal file
2
tools/build/options/WITHOUT_VI
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
.\" $FreeBSD$
|
||||
Set to not build and install vi, view, ex and related programs.
|
||||
|
|
@ -182,7 +182,6 @@ SUBDIR= alias \
|
|||
unvis \
|
||||
uudecode \
|
||||
uuencode \
|
||||
vi \
|
||||
vis \
|
||||
vmstat \
|
||||
w \
|
||||
|
|
@ -361,6 +360,10 @@ SUBDIR+= xstr
|
|||
SUBDIR+= yacc
|
||||
.endif
|
||||
|
||||
.if ${MK_VI} != "no"
|
||||
SUBDIR+= vi
|
||||
.endif
|
||||
|
||||
.if ${MK_USB} != "no"
|
||||
SUBDIR+= usbhidaction
|
||||
SUBDIR+= usbhidctl
|
||||
|
|
|
|||
Loading…
Reference in a new issue