From owner-freebsd-current@freebsd.org Mon Jun 13 21:12:57 2016 Return-Path: Delivered-To: freebsd-current@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 F376DAF2A42 for ; Mon, 13 Jun 2016 21:12:57 +0000 (UTC) (envelope-from markmi@dsl-only.net) Received: from asp.reflexion.net (outbound-mail-211-153.reflexion.net [208.70.211.153]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA44F27F1 for ; Mon, 13 Jun 2016 21:12:57 +0000 (UTC) (envelope-from markmi@dsl-only.net) Received: (qmail 21221 invoked from network); 13 Jun 2016 21:13:28 -0000 Received: from unknown (HELO rtc-sm-01.app.dca.reflexion.local) (10.81.150.1) by 0 (rfx-qmail) with SMTP; 13 Jun 2016 21:13:28 -0000 Received: by rtc-sm-01.app.dca.reflexion.local (Reflexion email security v7.90.3) with SMTP; Mon, 13 Jun 2016 17:13:00 -0400 (EDT) Received: (qmail 25222 invoked from network); 13 Jun 2016 21:13:00 -0000 Received: from unknown (HELO iron2.pdx.net) (69.64.224.71) by 0 (rfx-qmail) with SMTP; 13 Jun 2016 21:13:00 -0000 X-No-Relay: not in my network X-No-Relay: not in my network Received: from [192.168.0.105] (ip70-189-131-151.lv.lv.cox.net [70.189.131.151]) by iron2.pdx.net (Postfix) with ESMTPSA id 07E0F1C43D6; Mon, 13 Jun 2016 14:12:50 -0700 (PDT) From: Mark Millard Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: WITH_META_MODE vs. delete-old and delete-old-libs Message-Id: <31063879-DF43-4895-A9EA-99A70DCFE4A1@dsl-only.net> Date: Mon, 13 Jun 2016 14:12:54 -0700 To: Bryan Drewery , FreeBSD Current Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) X-Mailer: Apple Mail (2.3124) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jun 2016 21:12:58 -0000 I've been using the following script to run my make commands for amd64 = builds (as an example): > # more = ~/sys_build_scripts.amd64-host/make_amd64_nodebug_clang_bootstrap-amd64-ho= st.sh=20 > kldload -n filemon && \ > script = ~/sys_typescripts/typescript_make_amd64_nodebug_clang_bootstrap-amd64-host= -$(date +%Y-%m-%d:%H:%M:%S) \ > env __MAKE_CONF=3D"/root/src.configs/make.conf" = SRC_ENV_CONF=3D"/root/src.configs/src.conf.amd64-clang-bootstrap.amd64-hos= t" \ > WITH_META_MODE=3Dyes \ > MAKEOBJDIRPREFIX=3D"/usr/obj/clang/amd64.amd64" \ > make $* When the WITH_META_MODE=3Dyes is present (as shown) delete-old and = delete-old-libs command line arguments to the script do not display the = prompts but the process does wait for the y/n answers. I've actually = used top in another window to see what it is waiting for an answer to. = After I've answered all the questions then the list of prompts finally = is shown all at once. Without WITH_META_MODE=3D each prompt text is displayed before it waits = for the answer to that prompt. This sort of fits in with my earlier questions about make usage that is = in the likes of, say, mergemaster and if/where care about = WITH_META_MODE=3Dyes use vs. disuse might be important for such. For = example: Should "env WITH_META_MODE=3Dyes" be used with mergemaster if = it was used with buildworld, buildkernel, installkernel, and = installworld? =3D=3D=3D Mark Millard markmi at dsl-only.net