From 0625beb8de1c92c92b9a71b50d566b21604c1b35 Mon Sep 17 00:00:00 2001 From: ngie Date: Sun, 1 Mar 2015 22:07:54 +0000 Subject: MFC r278193: Add MK_FILE to control whether or not to build file(1), libmagic(3), etc Sponsored by: EMC / Isilon Storage Division --- usr.bin/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'usr.bin/Makefile') diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 785fdd6..0682183 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -45,7 +45,6 @@ SUBDIR= alias \ expand \ false \ fetch \ - file \ find \ fmt \ fold \ @@ -230,6 +229,10 @@ _clang= clang SUBDIR+= ee .endif +.if ${MK_FILE} != "no" +SUBDIR+= file +.endif + .if ${MK_FINGER} != "no" SUBDIR+= finger .endif -- cgit v1.1