Date: Wed, 29 Jan 2014 05:00:04 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r261257 - head/usr.bin Message-ID: <201401290500.s0T504hA056865@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401290500.s0T504hA056865>