From owner-freebsd-current Sat Oct 31 11:02:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA01537 for freebsd-current-outgoing; Sat, 31 Oct 1998 11:02:34 -0800 (PST) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA01532 for ; Sat, 31 Oct 1998 11:02:33 -0800 (PST) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.9.1/8.9.1) with ESMTP id LAA22746; Sat, 31 Oct 1998 11:02:28 -0800 (PST) (envelope-from jdp) Message-Id: <199810311902.LAA22746@austin.polstra.com> To: Jeroen Ruigrok/Asmodai cc: current@FreeBSD.ORG Subject: Re: Another compile error In-reply-to: Your message of "Sat, 31 Oct 1998 19:20:26 +0100." Date: Sat, 31 Oct 1998 11:02:28 -0800 From: John Polstra Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > 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