diff options
author | brooks <brooks@FreeBSD.org> | 2014-03-01 04:25:52 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2014-03-01 04:25:52 +0000 |
commit | ac9b0c8c582fde71483b514e5fdfa5cdf703072d (patch) | |
tree | 28fd4c2eb3edc7f8b7229387f33895e229963fce /usr.sbin/Makefile | |
parent | 33b9ca9ab1e84f2fbd3154eb278624e7f535e144 (diff) | |
download | FreeBSD-src-ac9b0c8c582fde71483b514e5fdfa5cdf703072d.zip FreeBSD-src-ac9b0c8c582fde71483b514e5fdfa5cdf703072d.tar.gz |
MFC r261299:
Merge from CheriBSD:
commit 2d581e8caf79d7a0f5a24590eccd06da90cccb74
Author: Brooks Davis <brooks@one-eyed-alien.net>
Date: Mon Jan 27 22:57:51 2014 +0000
Add WITHOUT_FMTREE to disable building fmtree.
Sponsored by: DARPA, AFRL
Diffstat (limited to 'usr.sbin/Makefile')
-rw-r--r-- | usr.sbin/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index b58d674..5f275a6 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -48,7 +48,7 @@ SUBDIR= adduser \ mountd \ mptutil \ mtest \ - mtree \ + ${_mtree} \ newsyslog \ nfscbd \ nfsd \ @@ -142,6 +142,10 @@ SUBDIR+= fdread SUBDIR+= fdwrite .endif +.if ${MK_FMTREE} != "no" +SUBDIR+= mtree +.endif + .if ${MK_FREEBSD_UPDATE} != "no" SUBDIR+= freebsd-update .endif |