From owner-freebsd-arch@FreeBSD.ORG Fri Jun 19 15:39:44 2015 Return-Path: Delivered-To: freebsd-arch@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 898226D2 for ; Fri, 19 Jun 2015 15:39:44 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-ie0-x230.google.com (mail-ie0-x230.google.com [IPv6:2607:f8b0:4001:c03::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 54944ED1 for ; Fri, 19 Jun 2015 15:39:44 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: by iecrd14 with SMTP id rd14so77300808iec.3 for ; Fri, 19 Jun 2015 08:39:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=5U2QisFp73xld5ErvjKqlY5tLs3kUcRjRoji40vty88=; b=DWY1HCFvh5BGnqkeapGRLFM30fz2YnZmli7RButSyjIL+32JicwOOrydUsKrXDx1kl DJORslxyNW7u3JDvckrboy2zGulsgkPx8vL6R6k1A8Jtx7t4p7mNRP34Oti6OGmcISgo 17sKeLaZsfh0kkkPgyfPI9eWrFYk3rQJHy/m4+noRW2cy1HQWRAkTTemCyLhS6NNXPHB w4RTUdYj2Blgddf4F00h/Z5F4fyx3T7AGvuN/GiEjFykJMc6PF9+mMi1CDtCkuIpDiuV IUnZpT4RcJ6N4GJUjsEd5mHjYA27myRUGuXBxHawyDlvcz+CugjYyjXKLk777zKHOY2u H4UA== MIME-Version: 1.0 X-Received: by 10.42.176.8 with SMTP id bc8mr12515183icb.22.1434728383692; Fri, 19 Jun 2015 08:39:43 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.36.38.133 with HTTP; Fri, 19 Jun 2015 08:39:43 -0700 (PDT) In-Reply-To: <19927.1434727307@chaos> References: <19927.1434727307@chaos> Date: Fri, 19 Jun 2015 08:39:43 -0700 X-Google-Sender-Auth: ygbJ7hCrJLN_WhMfWx0SdeZsIME Message-ID: Subject: Re: stale .depend during -HEAD builds? From: Adrian Chadd To: "Simon J. Gerraty" Cc: "freebsd-arch@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-arch@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussion related to FreeBSD architecture List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 15:39:44 -0000 On 19 June 2015 at 08:21, Simon J. Gerraty wrote: > Adrian Chadd wrote: >> Is this a fallout from the meta mode changes? > > Without more detail, its hard to be certain. > >> make[4]: /home/adrian/work/freebsd/head-embedded-2/src/../obj/mips//mips.mips/usr/home/adrian/work/freebsd/head-embedded-2/src/usr.sbin/praliases/.depend, >> 78: ignoring stale .depend for >> /home/adrian/work/freebsd/head-embedded-2/src/../obj/mips//mips.mips/usr/home/adrian/work/freebsd/head-embedded-2/src/lib/libsmdb/libsmutil.a >> > > Is that what your objdirs normally look like? Yup: github.com/freebsd/freebsd-wifi-build You can use that to generate MIPS AP images using freebsd-head ,and the obj paths are relative. > > The message from make is standard bmake behavior. > An unresolved and unresolvable dependency learned from .depend > is ignored, in case it is just stale data. > If it really is needed the build will fail anyway, but in 90% of cases > it is just stale data and the build sails happily on. > > Normally you would see this sort of thing after some sort of tree re-org > (eg things getting renamed or removed). > > Very handy for update builds, especially if doing any form of auto > depend (which usually means depends lag by a build) Ok. I just didn't see it until I updated my local MIPS tree to include the meta make stuf, (and did kill obj/root.) -a