From owner-freebsd-stable Wed Oct 4 18:29:53 2000 Delivered-To: freebsd-stable@freebsd.org Received: from ns.itga.com.au (ns.itga.com.au [202.53.40.210]) by hub.freebsd.org (Postfix) with ESMTP id C9CC637B502 for ; Wed, 4 Oct 2000 18:29:49 -0700 (PDT) Received: from lightning.itga.com.au (lightning.itga.com.au [192.168.71.20]) by ns.itga.com.au (8.9.3/8.9.3) with ESMTP id MAA62812; Thu, 5 Oct 2000 12:29:48 +1100 (EST) (envelope-from gnb@itga.com.au) Received: from itga.com.au (lightning.itga.com.au [192.168.71.20]) by lightning.itga.com.au (8.9.3/8.9.3) with ESMTP id MAA25324; Thu, 5 Oct 2000 12:29:47 +1100 (EST) Message-Id: <200010050129.MAA25324@lightning.itga.com.au> From: Gregory Bond To: Gerhard Sittig Cc: freebsd-stable@FreeBSD.ORG, gnb@itga.com.au Subject: Re: agp_if.c In-reply-to: Your message of Wed, 04 Oct 2000 21:01:14 +0200. Date: Thu, 05 Oct 2000 12:29:46 +1100 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Doesn't the old "config; cd; make dep all install" sequence work? Traps for young players: No this (sometimes) doesn't work. You need to do "make depend && make all", so that the second invocation of make picks up the new dependencies calculated by "make depend". Doing them as one command (i.e. "make depend all") will sometimes result in odd behaviour as the make will use the old dependencies for the whole make run. This is one area where gmake differs from BSD make - gmake will reread any makefiles that are changed during the make run, so the "make depend all" trick would work for projects built with gmake. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message