From owner-freebsd-current Sun Jan 11 01:06:53 1998 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA04704 for current-outgoing; Sun, 11 Jan 1998 01:06:53 -0800 (PST) (envelope-from owner-freebsd-current) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA04679 for ; Sun, 11 Jan 1998 01:05:45 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id UAA27003; Sun, 11 Jan 1998 20:01:36 +1100 Date: Sun, 11 Jan 1998 20:01:36 +1100 From: Bruce Evans Message-Id: <199801110901.UAA27003@godzilla.zeta.org.au> To: dstenn@fanfic.org, jb@freebsd1.cimlogic.com.au Subject: Re: make world - A new error Cc: current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >> Well.. Here's the latest in the saga.. This isn't really a 'make world' >> error but a 'make most' The previous error seem to happen when I try to >> compile the libs so I decided to exclude them. > ^^^^^^^ >If you exclude them, then they are not there to link against! It should link to the standard libraries. This may not be right, but it is what you asked for. `make most' is more like plain `make' than it is like `make world'. >> >> ===> ac >> cc -O -c /usr/src/usr.sbin/ac/ac.c >> make: don't know how to make /usr/obj/usr/src/tmp/usr/lib/libc.so.3.0. > ^^^^^^^^^^^^^^^^^^^^ > >This is the temporary build tree which is supposed to contain things >you have build before, not things which have previously been installed. It may contain pointers (in .depend files) to the temporary obj tree when the main obj tree isn't clean enough. The main tree is normally cleaned by `make world', but it is likely to be unclean at the point of failure if `make world' fails. Summary: pilot error. Bruce