From owner-freebsd-current Mon Jul 15 18:11:35 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA08577 for current-outgoing; Mon, 15 Jul 1996 18:11:35 -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 SAA08548 for ; Mon, 15 Jul 1996 18:11:28 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id LAA26911; Tue, 16 Jul 1996 11:11:15 +1000 Date: Tue, 16 Jul 1996 11:11:15 +1000 From: Bruce Evans Message-Id: <199607160111.LAA26911@godzilla.zeta.org.au> To: current@freebsd.org, imp@village.org Subject: Re: Nits Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >When I do a make depend all install, it seems to be rebuilding >ALL of the binaries. Is this normal expected behavior, or just the >result of the make world changing the times of the libraries when it >installed them? Both. Unless you define INSTALL as `INSTALL -C' to avoid clobbering the times of unchanged installed files. The libraries change a lot anyway, but relinking all the binaries doesn't take long, so no one has been annoyed enough to fix this or the bogon that dynamically linked executables don't actually depend on the static libraries. >Also, A couple of warnings in -current when building. Not a big deal, >but I thought I'd point them out in case this is something broken. >This is as of ctm 2238. The warnings from handbook are new between >this and my last build with July 11ish sources. Only the ones for line 6788 and 26767 are actuall new. The others are in my May 5 log which wasn't much different from my October log. The libss and mk_cmds warnings are new. The ones for mk_cmds are caused by cleaning up libss. ss_internal.h no longer declares malloc(), but mk_cmds depends on it being declared there. Bruce