svn commit: r278054 - stable/10/share

Garrett Cooper ngie at FreeBSD.org
Mon Feb 2 05:44:35 UTC 2015


Author: ngie
Date: Mon Feb  2 05:44:34 2015
New Revision: 278054
URL: https://svnweb.freebsd.org/changeset/base/278054

Log:
  MFC r277666:
  
  r277666 (by ngie):
  
    Only build share/dtrace if MK_CDDL != no
  
    Sponsored by: EMC / Isilon Storage Division

Modified:
  stable/10/share/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/share/Makefile
==============================================================================
--- stable/10/share/Makefile	Mon Feb  2 05:41:17 2015	(r278053)
+++ stable/10/share/Makefile	Mon Feb  2 05:44:34 2015	(r278054)
@@ -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-stable mailing list