Re: VCP::Source::cvs complains "Absolute module reference invalid:"
Dimitry Andric <[email protected]> Sun, 7 Nov 2004 21:25:42 +0100
| Newsgroups | gmane.comp.version-control.revml |
|---|---|
| Message-ID | <[email protected]> |
------------741CF1EC3949C6EE Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit On 2004-11-03 at 21:15:19 Alex wrote: > I am trying to VCP from a CVS repo and getting this error message: > cvs -Q -z9 > -d:pserver:anonymous:@cvs.sourceforge.net/cvsroot/sugarcrm checkout > -r1.1 -p /sugarcrm/LICENSE returned 1 not 0 > stderr: > cvs [checkout aborted]: Absolute module reference invalid: > `/sugarcrm/LICENSE' I've run into this too, although for a slightly other reason. The cause is probably an invalid CVSROOT, and in your case a colon is missing between the hostname and the directory specification. So you will need to change: CVSROOT=:pserver:anonymous:@cvs.sourceforge.net/cvsroot/sugarcrm into CVSROOT=:pserver:anonymous:@cvs.sourceforge.net:/cvsroot/sugarcrm In my case, I was using a local repository: CVSROOT=/home/cvs which resulted in precisely the same error message. It had to be changed to: CVSROOT=:local:/home/cvs Note that CVS itself accepts either syntax for local repositories, but vcp apparently does not. ------------741CF1EC3949C6EE Content-Type: application/pgp-signature -----BEGIN PGP MESSAGE----- Version: GnuPG v1.2.5 (MingW32) iD8DBQFBjoTGsF6jCi4glqMRAt5dAJ95k3AiaPTa5y8Iyc0Q0ovo1GMYMgCeI6HR W9YbDCY5e8L8o43LR3gCr5k= =lXCH -----END PGP MESSAGE----- ------------741CF1EC3949C6EE--