From owner-freebsd-hackers Thu May 30 06:55:22 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA28280 for hackers-outgoing; Thu, 30 May 1996 06:55:22 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id GAA28253; Thu, 30 May 1996 06:55:14 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id XAA23507; Thu, 30 May 1996 23:50:55 +1000 Date: Thu, 30 May 1996 23:50:55 +1000 From: Bruce Evans Message-Id: <199605301350.XAA23507@godzilla.zeta.org.au> To: jkh@time.cdrom.com, phk@FreeBSD.ORG Subject: Re: Somebody explain this to me again.. :-) Cc: hackers@FreeBSD.ORG Sender: owner-hackers@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Why does the ``libraries'' target in /usr/src/Makefile cleans >automatically? Sure, you can set NOCLEANDIR but then that turns off The libraries might be different if the compiler has changed. The compiler might change because it's not in lib-tools. However, since libraries are built before the compiler in the main pass, they probably won't change in the main pass. They may change when everything is built again. The compiler should probably be in lib-tools. Then to ensure that a stable version of it gets built, you could blow it away instead of the libraries. It may take longer to rebuild than the libraries :-]. Bruce