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 [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to