svn commit: r261257 - head/usr.bin

Warner Losh imp at FreeBSD.org
Wed Jan 29 05:00:04 UTC 2014


Author: imp
Date: Wed Jan 29 05:00:04 2014
New Revision: 261257
URL: http://svnweb.freebsd.org/changeset/base/261257

Log:
  Don't build BSDL dtc if the GPL dtc is enabled.

Modified:
  head/usr.bin/Makefile

Modified: head/usr.bin/Makefile
==============================================================================
--- head/usr.bin/Makefile	Wed Jan 29 02:39:44 2014	(r261256)
+++ head/usr.bin/Makefile	Wed Jan 29 05:00:04 2014	(r261257)
@@ -37,7 +37,6 @@ SUBDIR=	alias \
 	ctlstat \
 	cut \
 	dirname \
-	dtc \
 	du \
 	ee \
 	elf2aout \
@@ -231,6 +230,10 @@ SUBDIR+=	calendar
 _clang=		clang
 .endif
 
+.if ${MK_GPL_DTC} != "yes"
+SUBDIR+=	dtc
+.endif
+
 .if ${MK_GROFF} != "no"
 SUBDIR+=	vgrind
 .endif


More information about the svn-src-all mailing list