diff options
author | emaste <emaste@FreeBSD.org> | 2014-06-30 00:20:12 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2014-06-30 00:20:12 +0000 |
commit | e6d2c6fe09ebd539a816c4180726be6473753f38 (patch) | |
tree | bd5e60a0d69335cb5400150ab3eeefe574eb1929 /share | |
parent | fcae8e05c8d0ca008360af9f820184a221cd2740 (diff) | |
download | FreeBSD-src-e6d2c6fe09ebd539a816c4180726be6473753f38.zip FreeBSD-src-e6d2c6fe09ebd539a816c4180726be6473753f38.tar.gz |
Rename the WITHOUT_VT_SUPPORT knob to WITHOUT_VT
The _SUPPORT knobs have a consistent meaning which differs from the
behaviour controlled by this knob. As the knob is opt-out and has not
appeared in a release the impact should be low.
Suggested by: imp, wblock
MFC after: 1 week
Diffstat (limited to 'share')
-rw-r--r-- | share/Makefile | 2 | ||||
-rw-r--r-- | share/mk/src.opts.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/share/Makefile b/share/Makefile index 416a42d..63c18bb 100644 --- a/share/Makefile +++ b/share/Makefile @@ -86,7 +86,7 @@ _syscons= syscons _tests= tests .endif -.if ${MK_VT_SUPPORT} != "no" +.if ${MK_VT} != "no" _vt= vt .endif diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index 9d1db24..5c2cb40 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -149,7 +149,7 @@ __DEFAULT_YES_OPTIONS = \ USB \ UTMPX \ VI \ - VT_SUPPORT \ + VT \ WIRELESS \ WPA_SUPPLICANT_EAPOL \ ZFS \ |