Date: Sat, 26 Sep 2015 14:26:08 +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: r288268 - head/usr.sbin Message-ID: <201509261426.t8QEQ8EX003974@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Sat Sep 26 14:26:08 2015 New Revision: 288268 URL: https://svnweb.freebsd.org/changeset/base/288268 Log: Hookup mkcsmapper_static and mkesdb_static for all but install. These are only handled as 'build-tools' in Makefile.inc1. This causes 'make clean' from the top of the tree to not clean the directories. It also effectively has kept them disconnected and risks them bitrotting. The buildworld process never cleans them either. Connect them so they will always be built, cleaned, etc, but never installed. Discussed with: imp (briefly) Sponsored by: EMC / Isilon Storage Division Modified: head/usr.sbin/Makefile Modified: head/usr.sbin/Makefile ============================================================================== --- head/usr.sbin/Makefile Sat Sep 26 14:15:01 2015 (r288267) +++ head/usr.sbin/Makefile Sat Sep 26 14:26:08 2015 (r288268) @@ -157,7 +157,7 @@ SUBDIR+= fdwrite SUBDIR+= mtree .endif -.if ${MK_FREEBSD_UPDATE} != "no" +.if ${MK_FREEBSD_UPDATE} != "no" && ${MK_RCS} != "no" SUBDIR+= freebsd-update .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509261426.t8QEQ8EX003974>