Re: buildworld problems with today's sources

2002-07-01 Thread Andrew Gallatin


The same thing happened to me when buildworlding on a ~june 20th
current box.

I removed CPUTYPE from /etc/make.conf, and I fsck'ed the disk in
question (after a crash resulting from the condvar problem discussed
here).  And I removed -j4 from my make flags.  One of these things
(sorry that I don't know which), cured the problem.  I was mainly
interested in getting a -current world, not diagnosing the breakage.


Drew

Luigi Rizzo writes:
...
  Stop in /home/luigi/XORP/HEAD_020630/src/gnu/usr.bin/tar.
  *** Error code 1

...

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: buildworld problems with today's sources

2002-07-01 Thread Luigi Rizzo

On Mon, Jul 01, 2002 at 09:47:26AM -0400, Andrew Gallatin wrote:
 
 The same thing happened to me when buildworlding on a ~june 20th
 current box.

Ruslan explained me the source of the problem... cvs does not
prune empty directories unless you specify a revision or a date.
In my case i wanted HEAD so i did

cvs co src

whereas I should have done

cvs co -P src

After doing that, mostly things worked (modulo the fact that i probably
was in the middle of some commit and there was some breakage
somewhere, but nothing important)

cheers
luigi

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: buildworld problems with today's sources

2002-07-01 Thread Andrew Gallatin


Luigi Rizzo writes:
  On Mon, Jul 01, 2002 at 09:47:26AM -0400, Andrew Gallatin wrote:
   
   The same thing happened to me when buildworlding on a ~june 20th
   current box.
  
  Ruslan explained me the source of the problem... cvs does not
  prune empty directories unless you specify a revision or a date.
  In my case i wanted HEAD so i did
  
   cvs co src
  
  whereas I should have done
  
   cvs co -P src
  
  After doing that, mostly things worked (modulo the fact that i probably
  was in the middle of some commit and there was some breakage
  somewhere, but nothing important)

Ah!  That makes sense.  I lost a few hundred files after the fsck,
so I did an 'lcvs up' to make sure none of the src tree was missing.
And my .cvsrc has 'update -Pd' in it.

It had been a fresh checkout previously.  

That's actually rather scary.  It implies that a freshly checked out
tree checked out with plain 'cvs co src' is no longer buildable.

Drew

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: buildworld problems with today's sources

2002-07-01 Thread Luigi Rizzo

On Mon, Jul 01, 2002 at 09:58:04AM -0400, Andrew Gallatin wrote:
...
 That's actually rather scary.  It implies that a freshly checked out
 tree checked out with plain 'cvs co src' is no longer buildable.

c'mon... it is not that terrible, just a matter of adding a -P flag

luigi

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: buildworld problems with today's sources

2002-07-01 Thread Peter Schultz

On Mon, 2002-07-01 at 09:02, Luigi Rizzo wrote:
 On Mon, Jul 01, 2002 at 09:58:04AM -0400, Andrew Gallatin wrote:
 ...
  That's actually rather scary.  It implies that a freshly checked out
  tree checked out with plain 'cvs co src' is no longer buildable.
 
 c'mon... it is not that terrible, just a matter of adding a -P flag
 
Do these problems concern someone using cvsup?  I've been having a
terrible time with -current lately.  Of course I realize development is
going full speed, I'm being patient and using the down time to encourage
others to turn to FreeBSD.

The file system is blazing fast and as soon as the kernel smooths out
FreeBSD-5.0 is going to rock.  I'm very happy with FreeBSD.  It does
take a very great deal of studying, but once you've done that it's so
ultimately powerful.  To my dismay I've only just scratched the surface,
but I'm not giving up yet!

My thanks goes out to all those valuable FreeBSD commits.

Pete...


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



buildworld problems with today's sources

2002-06-30 Thread Luigi Rizzo

I did the following (on a -STABLE system):

cvs co src
cd src
make MAKEOBJDIRPREFIX=`pwd`/../usr/obj buildworld

and got the error below.
Any ideas ? Am i doing something wrong ?

cheers
luigi

=== gnu/usr.bin/tar
rm -f tar addext.o argmatch.o backupfile.o basename.o dirname.o error.o exclude.o 
full-write.o getdate.o getline.o getopt.o getopt1.o getstr.o hash.o human.o mktime.o 
modechange.o prepargs.o print-copyr.o quotearg.o safe-read.o save-cwd.o savedir.o 
unicodeio.o xgetcwd.o xmalloc.o xstrdup.o xstrtoul.o xstrtoumax.o buffer.o compare.o 
create.o delete.o extract.o incremen.o list.o mangle.o misc.o names.o rtapelib.o tar.o 
update.o tar.1.gz tar.1.cat.gz
rm: tar: is a directory
*** Error code 1

Stop in /home/luigi/XORP/HEAD_020630/src/gnu/usr.bin/tar.
*** Error code 1


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message