diff options
author | ngie <ngie@FreeBSD.org> | 2015-01-26 07:15:49 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-01-26 07:15:49 +0000 |
commit | 66090fa9a37b55b073c52702f51417c207b1c045 (patch) | |
tree | 8f70b3f4a2642311c997ba66a92785651afc0732 /usr.sbin/Makefile | |
parent | 691728766995189ba0ea8b9795f271eb5008ac8e (diff) | |
download | FreeBSD-src-66090fa9a37b55b073c52702f51417c207b1c045.zip FreeBSD-src-66090fa9a37b55b073c52702f51417c207b1c045.tar.gz |
Add MK_AUTOFS knob for building and installing autofs(4), et al
MFC after: 2 weeks
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'usr.sbin/Makefile')
-rw-r--r-- | usr.sbin/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 1db4046..79e4909 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -5,7 +5,6 @@ SUBDIR= adduser \ arp \ - autofs \ binmiscctl \ bootparamd \ bsdconfig \ @@ -124,6 +123,10 @@ SUBDIR+= praudit SUBDIR+= authpf .endif +.if ${MK_AUTOFS} != "no" +SUBDIR+= autofs +.endif + .if ${MK_BLUETOOTH} != "no" SUBDIR+= bluetooth .endif |