Please include the address [EMAIL PROTECTED] on all Fink
related mail. I can help with some questions but if you keep conversations
on the list then people a lot smarter than me will be able to help you :)

On Sun, 29 Sep 2002, Michael Frankel wrote:

> In the output there were a lot of lines indicating that something was
> "no longer in the repository". Those were the only error messages.

Those can be normal, as CVS is synchronizing with the remove server.

> So I wanted to print them out for you, so I ran the following command:
>
>     fink selfupdate-cvs | grep 'no longer in the repository'
>
> (I hope I didn't screw something up by doing this.)

Nothing should be screwed up by that, but you throw away most of the
useful output. A better variation IMO would be to send all output to a log
file with the 'tee' command, and then scan that for errors if anything
goes wrong:

   tcsh% fink selfupdate-cvs |& tee ~/fink_selfupdate-cvs
   tcsh% grep 'no longer in the repository' ~/fink_selfupdate-cvs

Note the '|&' construct -- in the tcsh shell [OSX default], this sends
both standard output & standard error down the pipe. If you don't capture
stderr then chances are you won't capture error messages. The same trick
can be donw in bash/sh but I forget the syntax on that side...

At a guess, you might have an error in there about "move $foo, it is in
the way" or something like that. This can happen when you've manually
edited a file that CVS wants to have exclusive read/write/create/delete
access to. If you have any errors like that, do what it says -- find the
file that it's complaining about and move or delete it, then re-run the
CVS update. If that was the error, the update should then work.



-- 
Chris Devers    [EMAIL PROTECTED]

Yow!  I threw up on my window!



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Fink-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-users

Reply via email to