From owner-freebsd-current@FreeBSD.ORG Mon Jul 14 12:08:36 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72E7F37B401 for ; Mon, 14 Jul 2003 12:08:36 -0700 (PDT) Received: from kientzle.com (h-66-166-149-50.SNVACAID.covad.net [66.166.149.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6749043FA3 for ; Mon, 14 Jul 2003 12:08:35 -0700 (PDT) (envelope-from kientzle@acm.org) Received: from acm.org (ugly.x.kientzle.com [66.166.149.53]) by kientzle.com (8.12.9/8.12.9) with ESMTP id h6EJ8LgY028776; Mon, 14 Jul 2003 12:08:21 -0700 (PDT) (envelope-from kientzle@acm.org) Message-ID: <3F13004E.1080306@acm.org> Date: Mon, 14 Jul 2003 12:11:10 -0700 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.1) Gecko/20021005 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John-Mark Gurney References: <3F12ED7B.9020700@acm.org> <20030714175457.GW35337@funkthat.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-current@freebsd.org Subject: Re: Error building /rescue on -current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: kientzle@acm.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jul 2003 19:08:36 -0000 John-Mark Gurney wrote: > I happen to notice an interesting problem on my build.. (-j3 on a sparc64 > box): > make: don't know how to make /usr/obj/usr/src/world/src/rescue/rescue//usr/src/w > orld/src/sbin/dhclient/client/clparse.o. Stop > *** Error code 2 > > notice the rescue//usr. I'm not sure what to make of it, but it seems > like this might confuse it. Also, why are we sticking obj files for rescue > in the source dir of the program? shouldn't they be in the rescue dir? > (so that they don't get globbered when the regular build happens.) The // is a non-issue. The obj files are going into ${.OBJDIR}. If they're showing up in the source dir of the program, then you haven't built the /usr/obj/usr/src/rescue directory tree. You should either: * define RESCUE during buildworld * cd /usr/src/rescue && make obj Tim Kientzle