From owner-freebsd-current@FreeBSD.ORG Mon Jul 21 09:33:31 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 6F71A37B401 for ; Mon, 21 Jul 2003 09:33:31 -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 D03E643F3F for ; Mon, 21 Jul 2003 09:33:30 -0700 (PDT) (envelope-from kientzle@acm.org) Received: from acm.org ([66.166.149.53]) by kientzle.com (8.12.9/8.12.9) with ESMTP id h6LGXUsE020159; Mon, 21 Jul 2003 09:33:30 -0700 (PDT) (envelope-from kientzle@acm.org) Message-ID: <3F1C1695.30409@acm.org> Date: Mon, 21 Jul 2003 09:36:37 -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: Gordon Tetlow References: <20030715100839.F41961@inton.Ninja-assassin.com> <20030716133802.K18278@schnell.net> <20030716181354.GA44980@dan.emsphone.com> <20030717074756.B17029@gamplex.bde.org> <20030717123524.T24327@schnell.net> <20030718154832.K21942@gamplex.bde.org> <20030718095946.H29869@schnell.net> <3F183EF9.7020506@acm.org> <20030721084750.GH12996@roark.gnf.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: Matt Loschert cc: current@freebsd.org Subject: Re: Buildworld fails in 5.1 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, 21 Jul 2003 16:33:31 -0000 Gordon Tetlow wrote: > It seems that the $(OUTPUTS) target (which has 3 components) causes > this particular error. > > +.ORDER: $(OUTPUTS) > $(OUTPUTS): $(CONF) > MAKEOBJDIRPREFIX=${CRUNCHOBJS} crunchgen -q -m $(OUTMK) -c $(OUTC) \ > $(CONF) Hmmm... Is that what .ORDER is for? To work around a parallel make that gratuitously rebuilds things? > After doing that, I run into a problem with clparse.o from the dhclient > build. I think I might have a solution for that, but I'm too tired > right now to think straight. I'll look at it tomorrow. A-ha! I've known that dhclient was a problem, but the above gives me an idea. I wonder if the following helps? Tim Index: sbin/dhclient//Makefile =================================================================== RCS file: /usr/cvs/FreeBSD-CVS/src/sbin/dhclient/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- sbin/dhclient/Makefile 29 Jun 2003 18:46:17 -0000 1.20 +++ sbin/dhclient/Makefile 21 Jul 2003 16:34:22 -0000 @@ -52,6 +52,8 @@ # though, so we must run ``make all'' instead when we are asked to # generate an individual object file. +.ORDER: $(OBJS) + # Note: Must have some commands here to override the default build action ${OBJS}: all @true