From owner-freebsd-ports@freebsd.org Wed May 30 03:54:36 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BC02DEF9D8A for ; Wed, 30 May 2018 03:54:36 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 3D4576D5DB for ; Wed, 30 May 2018 03:54:36 +0000 (UTC) (envelope-from julian@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0157EEF9D85; Wed, 30 May 2018 03:54:36 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B912EEF9D83 for ; Wed, 30 May 2018 03:54:35 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 647716D5D8; Wed, 30 May 2018 03:54:35 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (115-166-25-190.dyn.iinet.net.au [115.166.25.190]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id w4U3sOg6071836 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Tue, 29 May 2018 20:54:27 -0700 (PDT) (envelope-from julian@freebsd.org) Subject: Re: anyone know how to shut these ports up? To: Brooks Davis Cc: "ports@FreeBSD.org" References: <20180529163849.GJ99063@spindle.one-eyed-alien.net> From: Julian Elischer Message-ID: Date: Wed, 30 May 2018 11:54:19 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <20180529163849.GJ99063@spindle.one-eyed-alien.net> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 May 2018 03:54:37 -0000 On 30/5/18 12:38 am, Brooks Davis wrote: > On Sat, May 26, 2018 at 02:07:43PM +0800, Julian Elischer wrote: >> several ports, when compiled output a MASS of stuff that looks like: >> >> ???????? No recipe for '../gnulib/m4/stdio_h.m4' and no prerequisites >> actually changed. >> ???????? No need to remake target '../gnulib/m4/stdio_h.m4'. >> ???????? Considering target file '../gnulib/m4/stdlib_h.m4'. >> ?????????? Looking for an implicit rule for '../gnulib/m4/stdlib_h.m4'. >> ?????????? Trying pattern rule with stem 'stdlib_h.m4'. >> ?????????? Trying implicit prerequisite '../gnulib/m4/stdlib_h.m4,v'. >> ?????????? Trying pattern rule with stem 'stdlib_h.m4'. >> ?????????? Trying implicit prerequisite '../gnulib/m4/RCS/stdlib_h.m4,v'. >> ?????????? Trying pattern rule with stem 'stdlib_h.m4'. >> ?????????? Trying implicit prerequisite '../gnulib/m4/RCS/stdlib_h.m4'. >> ?????????? Trying pattern rule with stem 'stdlib_h.m4'. >> ?????????? Trying implicit prerequisite '../gnulib/m4/s.stdlib_h.m4'. >> ?????????? Trying pattern rule with stem 'stdlib_h.m4'. >> ?????????? Trying implicit prerequisite '../gnulib/m4/SCCS/s.stdlib_h.m4'. >> ?????????? No implicit rule found for '../gnulib/m4/stdlib_h.m4'. >> ?????????? Finished prerequisites of target file '../gnulib/m4/stdlib_h.m4'. >> ???????? No recipe for '../gnulib/m4/stdlib_h.m4' and no prerequisites >> actually changed. >> ???????? No need to remake target '../gnulib/m4/stdlib_h.m4'. >> ???????? Considering target file '../gnulib/m4/stpcpy.m4'. >> ?????????? Looking for an implicit rule for '../gnulib/m4/stpcpy.m4'. >> >> ...?? except for about 20 minutes (my connection to the machine doing >> the work is not that fast) > That is very weird output. It looks like gmake is being called with -d > which certainly shouldn't be the case. > >> I suspect print/texinfo is one (it's kind of hard to tell exactly when >> they go off to do dependencies..) >> >> Does anyone know the secret to shutting up all this debug stuff? >> >> It literally pumps out so much crap that the rest of he family gets >> bumped off the internet connection.. > If you must run interactive, run tmux or screen and switch virtual > terminals. I find the latter to be really helpful when I've got a high > bandwidth-delay product connection (e.g. Washington, USA to the UK). > I can get back to the prompt much faster after a build success/failure > then if I have to wait for everything to clear the pipe. Unfortunately, running tmux, the data comes out of tmux so fast that I can not get a "switch windows" signal down to tmux. in actuality the process has probably finushed, but I have quite a few minutes of solid data queued up between the Server and me in AUS. for example, if I hit ^Z it eventually stops..  after that make has completed..  same thing with attempts to switch windows on tmux or screen. > -- Brooks