diff options
author | ngie <ngie@FreeBSD.org> | 2015-01-26 06:27:07 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-01-26 06:27:07 +0000 |
commit | 6b047416be9622d43fcc6acf8feafc498a3f8efc (patch) | |
tree | f9b26ec3aea5fcb8881f35ae243d14342c49285d /sbin/Makefile | |
parent | 70dc4fad7a93ca73cc531060c49f47e0bd97911a (diff) | |
download | FreeBSD-src-6b047416be9622d43fcc6acf8feafc498a3f8efc.zip FreeBSD-src-6b047416be9622d43fcc6acf8feafc498a3f8efc.tar.gz |
Add MK_HAST knob for building and installing hastd(8), et al
MFC after: 2 weeks
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'sbin/Makefile')
-rw-r--r-- | sbin/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index 1c34e0c..111919e 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -30,8 +30,6 @@ SUBDIR=adjkerntz \ ggate \ growfs \ gvinum \ - hastctl \ - hastd \ ifconfig \ init \ kldconfig \ @@ -88,6 +86,11 @@ SUBDIR+= ccdconfig SUBDIR+= devd .endif +.if ${MK_HAST} != "no" +SUBDIR+= hastctl +SUBDIR+= hastd +.endif + .if ${MK_IPFILTER} != "no" SUBDIR+= ipf .endif |