Date: Fri, 23 Oct 2015 17:24:34 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r289839 - head/usr.bin Message-ID: <201510231724.t9NHOYcs051012@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Fri Oct 23 17:24:34 2015 New Revision: 289839 URL: https://svnweb.freebsd.org/changeset/base/289839 Log: dtc needs to be installed if MK_GPL_DTC is not set, which doesn't fit into the SUBDIR.yes pattern well. This fixes installation of the BSDL dtc after r288904. Reported by: jhibbits Discussed with: imp Sponsored by: EMC / Isilon Storage Division Modified: head/usr.bin/Makefile Modified: head/usr.bin/Makefile ============================================================================== --- head/usr.bin/Makefile Fri Oct 23 16:54:24 2015 (r289838) +++ head/usr.bin/Makefile Fri Oct 23 17:24:34 2015 (r289839) @@ -209,7 +209,9 @@ SUBDIR.${MK_GAMES}+= number SUBDIR.${MK_GAMES}+= pom SUBDIR.${MK_GAMES}+= primes SUBDIR.${MK_GAMES}+= random -SUBDIR.${MK_GPL_DTC}+= dtc +.if ${MK_GPL_DTC} != "yes" +SUBDIR+= dtc +.endif SUBDIR.${MK_GROFF}+= vgrind SUBDIR.${MK_HESIOD}+= hesinfo SUBDIR.${MK_ICONV}+= iconv
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510231724.t9NHOYcs051012>