From 57d9cab5080bc72a10506395120a54f3fa35d3f2 Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Sun, 25 Jan 2015 00:32:17 +0000 Subject: [PATCH] Only build share/dtrace if MK_CDDL != no MFC after: 1 week Sponsored by: EMC / Isilon Storage Division --- share/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/share/Makefile b/share/Makefile index 63c18bb6464a..97d1dac540ca 100644 --- a/share/Makefile +++ b/share/Makefile @@ -8,7 +8,7 @@ SUBDIR= ${_colldef} \ ${_dict} \ ${_doc} \ - dtrace \ + ${_dtrace} \ ${_examples} \ ${_i18n} \ keys \ @@ -37,6 +37,10 @@ SUBDIR= ${_colldef} \ _snmp= snmp .endif +.if ${MK_CDDL} != "no" +_dtrace= dtrace +.endif + .if ${MK_DICT} != "no" _dict= dict .endif