diff options
author | Ed Maste <emaste@FreeBSD.org> | 2014-06-05 18:53:56 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2014-06-05 18:53:56 +0000 |
commit | 8febff707392c6ce420be720e30de24c0713436a (patch) | |
tree | 7d22a715d416ee5d1a2c4aec1c09a05588a878d5 /share/Makefile | |
parent | f0c9cf4a0534c029bb94d7307aebffae42799b82 (diff) |
Install VT support files
They can be disabled by setting WITHOUT_VT_SUPPORT=yes in src.conf.
Sponsored by: The FreeBSD Foundation
Notes
Notes:
svn path=/head/; revision=267124
Diffstat (limited to 'share/Makefile')
-rw-r--r-- | share/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/share/Makefile b/share/Makefile index 604e4169313a..416a42de0292 100644 --- a/share/Makefile +++ b/share/Makefile @@ -28,6 +28,7 @@ SUBDIR= ${_colldef} \ termcap \ ${_tests} \ ${_timedef} \ + ${_vt} \ ${_zoneinfo} # NB: keep these sorted by MK_* knobs @@ -85,6 +86,10 @@ _syscons= syscons _tests= tests .endif +.if ${MK_VT_SUPPORT} != "no" +_vt= vt +.endif + .if ${MK_ZONEINFO} != "no" _zoneinfo= zoneinfo .endif |