Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 31 Oct 1998 11:02:28 -0800
From:      John Polstra <jdp@polstra.com>
To:        Jeroen Ruigrok/Asmodai <asmodai@wxs.nl>
Cc:        current@FreeBSD.ORG
Subject:   Re: Another compile error 
Message-ID:  <199810311902.LAA22746@austin.polstra.com>
In-Reply-To: Your message of "Sat, 31 Oct 1998 19:20:26 %2B0100." <XFMail.981031192026.asmodai@wxs.nl> 

next in thread | previous in thread | raw e-mail | index | archive | help
> Well, that's the fun part ;)
> I have the handbook and studied the man pages for CVSup, and this is the result
> of my cvsupfile (any recommendations welcome offcourse ;):
> 
> [diabolique] asmodai $ more cvsupfile 
> *default tag=.
> *default release=cvs
> *default host=cvsup.internat.freebsd.org
> *default base=/usr/local/etc/cvsup
> *default prefix=/src
> *default delete
> *default use-rel-suffix
> *default compress
> src-all
[...]

That looks good.

But there shouldn't be any directories in your tree named "Attic", and
there shouldn't be any files named "*,v".  I think that at some
point when you were first experimenting with CVSup, you must have
done an update without the "tag=." statement in your supfile.

I recommend that you do this to clean it up:

    cd /src
    find . \( -name '*,v' -o -name .depend -o -type l \) -print | xargs rm -f
    find -d . -name Attic | xargs rm -rf

    cd /usr/obj
    rm -rf *		# (You will get some error messages -- don't worry
    chflags -R 0 *
    rm -rf *		# (Yes, again)

Now do another CVSup update just for good measure.  Then try your
make world, and I think it will work this time.

Good luck,
John
--
  John Polstra                                               jdp@polstra.com
  John D. Polstra & Co., Inc.                        Seattle, Washington USA
  "Nobody ever went broke underestimating the taste of the American public."
                                                            -- H. L. Mencken

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?199810311902.LAA22746>