From owner-freebsd-bugs@FreeBSD.ORG Tue Sep 17 00:00:02 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 696806F6 for ; Tue, 17 Sep 2013 00:00:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 560D029ED for ; Tue, 17 Sep 2013 00:00:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r8H001Sm008228 for ; Tue, 17 Sep 2013 00:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8H001k1008227; Tue, 17 Sep 2013 00:00:01 GMT (envelope-from gnats) Date: Tue, 17 Sep 2013 00:00:01 GMT Message-Id: <201309170000.r8H001k1008227@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Garrett Cooper Subject: Re: conf/182172: make: don't know how to make /usr/obj/usr/src.svn/tmp/usr/lib/libunbound.a X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Garrett Cooper List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2013 00:00:02 -0000 The following reply was made to PR conf/182172; it has been noted by GNATS. From: Garrett Cooper To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: =?iso-8859-1?Q?Dag-Erling_Sm=F8rgrav?= Subject: Re: conf/182172: make: don't know how to make /usr/obj/usr/src.svn/tmp/usr/lib/libunbound.a Date: Mon, 16 Sep 2013 16:55:32 -0700 On Sep 16, 2013, at 4:50 PM, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `conf/182172'. > The individual assigned to look at your > report is: freebsd-bugs.=20 >=20 > You can access the state of your problem report at any time > via this link: >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D182172 >=20 >> Category: conf >> Responsible: freebsd-bugs >> Synopsis: make: don't know how to make = /usr/obj/usr/src.svn/tmp/usr/lib/libunbound.a >> Arrival-Date: Mon Sep 16 23:50:00 UTC 2013 It's looking for the file in the wrong spot: # find /usr/obj/ -name libunbound.a /usr/obj/usr/src.svn/tmp/usr/lib/private/libunbound.a /usr/obj/usr/src.svn/lib/libunbound/libunbound.a LIBDIR needs to be fixed for libunbound (probably not doable because of = it being necessary before /usr is mounted), or a hardlink/symlink needs = to be created for the library. Thanks, -Garrett=