From owner-svn-src-head@freebsd.org Sat Sep 26 20:23:03 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63470A0823B; Sat, 26 Sep 2015 20:23:03 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 4D34D97C; Sat, 26 Sep 2015 20:23:03 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 45E6611E9; Sat, 26 Sep 2015 20:23:03 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id E9AAF1345A; Sat, 26 Sep 2015 20:23:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id GX0fxiofg_-F; Sat, 26 Sep 2015 20:23:00 +0000 (UTC) From: Bryan Drewery DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 925B513454 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (1.0) Subject: Re: svn commit: r288270 - head/usr.bin Message-Id: <73F521FD-0959-4DC0-9F3B-F0EA19DDD578@FreeBSD.org> Date: Sat, 26 Sep 2015 13:22:54 -0700 References: <201509261428.t8QES5KU004359@repo.freebsd.org> In-Reply-To: <201509261428.t8QES5KU004359@repo.freebsd.org> To: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" X-Mailer: iPhone Mail (12H143) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Sep 2015 20:23:03 -0000 Please revert this. I am away for the day. Regards, Bryan Drewery > On Sep 26, 2015, at 07:28, Bryan Drewery wrote: >=20 > Author: bdrewery > Date: Sat Sep 26 14:28:04 2015 > New Revision: 288270 > URL: https://svnweb.freebsd.org/changeset/base/288270 >=20 > Log: > Hookup mkcsmapper_static and mkesdb_static for all but install. >=20 > 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 a= lso > effectively has kept them disconnected and risks them bitrotting. The > buildworld process never cleans them either. >=20 > Connect them so they will always be built, cleaned, etc, but never instal= led. >=20 > Discussed with: imp (briefly) > Sponsored by: EMC / Isilon Storage Division >=20 > Modified: > head/usr.bin/Makefile >=20 > Modified: head/usr.bin/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D > --- head/usr.bin/Makefile Sat Sep 26 14:27:21 2015 (r288269) > +++ head/usr.bin/Makefile Sat Sep 26 14:28:04 2015 (r288270) > @@ -401,6 +401,13 @@ SUBDIR+=3D who > SUBDIR+=3D svn > .endif >=20 > +# These are normally only handled for build-tools. Connect them for > +# all but installing to keep them reasonably connected. > +.if !make(install) > +SUBDIR+=3D mkcsmapper_static > +SUBDIR+=3D mkesdb_static > +.endif > + > .include >=20 > SUBDIR:=3D ${SUBDIR:O} >=20