diff options
author | emaste <emaste@FreeBSD.org> | 2014-06-05 18:53:56 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2014-06-05 18:53:56 +0000 |
commit | e55fcbf95c2513d417b98840407844e518795bf4 (patch) | |
tree | 7d22a715d416ee5d1a2c4aec1c09a05588a878d5 /share/Makefile | |
parent | 2a36f1de847ef32c76c30118f4c3596fd3c84fed (diff) | |
download | FreeBSD-src-e55fcbf95c2513d417b98840407844e518795bf4.zip FreeBSD-src-e55fcbf95c2513d417b98840407844e518795bf4.tar.gz |
Install VT support files
They can be disabled by setting WITHOUT_VT_SUPPORT=yes in src.conf.
Sponsored by: The FreeBSD Foundation
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 604e416..416a42d 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 |