Re: It's baaack... -- (make: don't know how to make copies. Stop)

2001-10-24 Thread Ruslan Ermilov
On Tue, Oct 23, 2001 at 08:43:29PM +0100, Mark Murray wrote: David Wolfskill wrote: Found this in my typescript after a make installworld on today's There was a commit about a problem with a missing NOOBJ.. May I suggest either: - rm -rf /usr/obj/* - cd src/share; cd `make -V

Re: It's baaack... -- (make: don't know how to make copies. Stop)

2001-10-24 Thread Mark Murray
Mark, please back your 1.32 revision from share/examples/Makefile out, Done. M -- o Mark Murray \_ FreeBSD Services Limited O.\_Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current in the body of the message

Re: It's baaack... -- (make: don't know how to make copies. Stop)

2001-10-23 Thread Mark Murray
David Wolfskill wrote: Found this in my typescript after a make installworld on today's There was a commit about a problem with a missing NOOBJ.. May I suggest either: - rm -rf /usr/obj/* - cd src/share; cd `make -V .OBJDIR`; rm -rf * (check that its not your srcdir first :-).

Re: It's baaack... -- (make: don't know how to make copies. Stop)

2001-10-23 Thread David Wolfskill
Date: Tue, 23 Oct 2001 20:43:29 +0100 From: Mark Murray [EMAIL PROTECTED] Actually, it is possible for there to be no copies: target in src/share/examples/something. The copies: (actually copies::) target is built up in a .for loop that may be empty. The fix is a dummy copies:: target. In the

Re: It's baaack... -- (make: don't know how to make copies. Stop)

2001-10-23 Thread Jos Backus
On Tue, Oct 23, 2001 at 08:43:29PM +0100, Mark Murray wrote: Actually, it is possible for there to be no copies: target in src/share/examples/something. The copies: (actually copies::) target is built up in a .for loop that may be empty. The fix is a dummy copies:: target. Perhaps move the

It's baaack... -- (make: don't know how to make copies. Stop)

2001-10-23 Thread David Wolfskill
Found this in my typescript after a make installworld on today's -CURRENT: ... === share/dict install -c -o root -g wheel -m 444 README propernames web2 web2a /usr/share/dict /usr/share/dict/words - web2 === share/examples (cd /usr/src/share/examples/../../etc; make etc-examples) (cd

Re: It's baaack... -- (make: don't know how to make copies. Stop)

2001-10-23 Thread Peter Wemm
David Wolfskill wrote: Found this in my typescript after a make installworld on today's There was a commit about a problem with a missing NOOBJ.. May I suggest either: - rm -rf /usr/obj/* - cd src/share; cd `make -V .OBJDIR`; rm -rf * (check that its not your srcdir first :-). make: don't

Re: It's baaack... -- (make: don't know how to make copies. Stop)

2001-10-23 Thread Giorgos Keramidas
On Tue, Oct 23, 2001 at 08:43:29PM +0100, Mark Murray wrote: Actually, it is possible for there to be no copies: target in src/share/examples/something. The copies: (actually copies::) target is built up in a .for loop that may be empty. The fix is a dummy copies:: target. I've tested