Date: Sun, 11 Feb 2001 17:11:08 -0500 (EST) From: Daniel Eischen <eischen@vigrid.com> To: Daniel Eischen <deischen@FreeBSD.org> Cc: current@FreeBSD.org Subject: HEADS UP: installworld gotchas Message-ID: <Pine.SUN.3.91.1010211170741.27716A-100000@pcnet1.pcnet.com> In-Reply-To: <200102112206.f1BM6kn53702@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.SUN.3.91.1010211170741.27716A-100000>