From owner-freebsd-current Sun Feb 11 14:11:35 2001 Delivered-To: freebsd-current@freebsd.org Received: from pcnet1.pcnet.com (pcnet1.pcnet.com [204.213.232.3]) by hub.freebsd.org (Postfix) with ESMTP id A4C5C37B401; Sun, 11 Feb 2001 14:11:32 -0800 (PST) Received: (from eischen@localhost) by pcnet1.pcnet.com (8.8.7/PCNet) id RAA28194; Sun, 11 Feb 2001 17:11:08 -0500 (EST) Date: Sun, 11 Feb 2001 17:11:08 -0500 (EST) From: Daniel Eischen To: Daniel Eischen Cc: current@FreeBSD.org Subject: HEADS UP: installworld gotchas In-Reply-To: <200102112206.f1BM6kn53702@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 11 Feb 2001, Daniel Eischen wrote: > deischen 2001/02/11 14:06:46 PST > > Modified files: > include stdio.h > Log: > libc MT-safety, part 2. > > Add a lock to FILE and define an additional flag. This commit caused some bootstrap problems. The installworld failed installing perl which seemed to need sed (from /usr/bin/sed), and libc got installed before sed. I used the following to install: # make buildworld # make installworld <- fails in perl # cd /usr/src/usr.bin/sed # make install # cd /usr/src # make -DNOPERL installworld # make installworld I suppose that can be shortened to (at least): # make buildworld # make -DNOPERL installworld # make installworld or possibly: # make buildworld # cd /usr/src/usr.bin/sed # make install # cd /usr/src # make installworld -- Dan Eischen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message