From owner-freebsd-current@FreeBSD.ORG Sat Apr 19 10:11:39 2014 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 726643E5; Sat, 19 Apr 2014 10:11:39 +0000 (UTC) Received: from mail-ve0-x231.google.com (mail-ve0-x231.google.com [IPv6:2607:f8b0:400c:c01::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1D25C13AD; Sat, 19 Apr 2014 10:11:39 +0000 (UTC) Received: by mail-ve0-f177.google.com with SMTP id sa20so4454012veb.8 for ; Sat, 19 Apr 2014 03:11:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=MIAXRzzFAg73R9fS6SAt4UgM1O1gDiYYzSlU7ZmxPvg=; b=JHO/pOTxa/U7kOIbJUxHpwl79ZRSSTh39rLrDrMO1hJcAZBY83CAwkEpYhEGQ3vWsj liERdudAnVyCCO8fK6p4leaqyuN9HJK4T1V3Sc/NXYpiamqoUkpLnpUg7E84msHbrJBG VJc24uNBdBxXOBphhYWdeSW7cZ7uARu7o8ssBeCG14TVk8I+VtWI1pa34buJVP1zqxqa NcjD1S5+L1C0ZXqIPPAX8kLawBfRsuU4uGLWzuuyYPLoAApxf8mVtznYFbJJvcLxlUF4 O3Gikm/ZlcgQdrUS60Hux4IxhQUpHXuJ+B7GPZj1uxlU1wcbG7iHJYxxwWSlRWBj/xSC ALTg== MIME-Version: 1.0 X-Received: by 10.220.10.2 with SMTP id n2mr7878729vcn.26.1397902298100; Sat, 19 Apr 2014 03:11:38 -0700 (PDT) Received: by 10.220.239.84 with HTTP; Sat, 19 Apr 2014 03:11:38 -0700 (PDT) In-Reply-To: <53521766.4090700@FreeBSD.org> References: <53520437.70409@FreeBSD.org> <53521766.4090700@FreeBSD.org> Date: Sat, 19 Apr 2014 06:11:38 -0400 Message-ID: Subject: Re: make delete-old/delete-old-libs issue after r264673 build From: Thomas Hoffmann To: freebsd-current Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: Jung-uk Kim X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.17 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: Sat, 19 Apr 2014 10:11:39 -0000 On Sat, Apr 19, 2014 at 2:27 AM, Jung-uk Kim wrote: > On 2014-04-19 02:14:58 -0400, Thomas Hoffmann wrote: > > On Sat, Apr 19, 2014 at 1:05 AM, Jung-uk Kim > > wrote: > > > > On 2014-04-18 23:46:46 -0400, Thomas Hoffmann wrote: > > > After building at -CURRENT amd64 r264673, I got the following > > > errors running 'make delete-old' and 'make delete-old-libs': > > ... > > > > This should be fixed in r264674. > > > > Jung-uk Kim > > > > > > With r264674, I no longer see those errors reported at delete-old or > > delete-old-libs, however, I now see those errors reported at the > > beginning of buildworld, buildkernel, installkernel, and installworld. > > > > With r264673 I only saw the errors at delete-old and delete-old-libs. > > I can't reproduce it. Do you have the bsd.mkopt.mk in /usr/share/mk, > i.e., did you do installworld? > > Jung-uk Kim > Had I taken a bit more time to think on it before my last post, I would have realized that what I was seeing is exactly what I should have expected. In order to reproduce my problem, you would have had to build at r264673 and then again at r264674. When I built at r264673, I was using the last good *.mk installed from r264633. That is why I did not see the errors for buildworld, buildkernel, installkernel and installworld. But, since installworld at r264673 installed the bad *.mk, that is why I saw the errors for the subsequent delete-old and delete-old-libs. When I re-built at r264674, I was still using the bad *.mk installed from r264673. That is why I saw the errors for buildworld, buildkernel, installkernel and installworld. But, since installworld at r264674 installed the good (i.e., fixed) *.mk, that is why I no longer saw the errors for the subsequent delete-old and delete-old-libs. My apologies for not realizing this earlier. -Tom