svn commit: r277666 - head/share

Garrett Cooper ngie at FreeBSD.org
Sun Jan 25 00:32:18 UTC 2015


Author: ngie
Date: Sun Jan 25 00:32:17 2015
New Revision: 277666
URL: https://svnweb.freebsd.org/changeset/base/277666

Log:
  Only build share/dtrace if MK_CDDL != no
  
  MFC after: 1 week
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/share/Makefile

Modified: head/share/Makefile
==============================================================================
--- head/share/Makefile	Sun Jan 25 00:30:22 2015	(r277665)
+++ head/share/Makefile	Sun Jan 25 00:32:17 2015	(r277666)
@@ -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


More information about the svn-src-all mailing list