This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
Re: Problems with anoncvs / solaris
- To: Fredrik Warg <warg at ce dot chalmers dot se>
- Subject: Re: Problems with anoncvs / solaris
- From: Matt Welsh <mdw at cs dot berkeley dot edu>
- Date: Mon, 10 Apr 2000 10:28:35 -0700
- cc: java-discuss at sourceware dot cygnus dot com
- Reply-To: Matt Welsh <mdw at cs dot berkeley dot edu>
> Reading the cvs documentation I tried:
> "cvs -z9 -d:pserver:anoncvs@anoncvs.cygnus.com:/cvs/java
> co -rpre-cni-catch-change libgcj"
>
> This doesn't seem to work though, I only got some of
> the files.
The problem is that this will *only* retrieve the files that were
tageed with the "pre-cni-catch-change" tag ... which is *not* everything
in libgcj (it only seems to cover the files in the "libjava"
subdirectory).
And clearly you don't want to get the old version of those files and
the latest version of everything else in the tree.
What I suggest doing is checking it out by date. From what I can tell
the closest version to the "pre-cni-catch-change" can be checked out by
doing:
cvs -z9 -d:pserver:anoncvs@anoncvs.cygnus.com:/cvs/java \
co -D "Mar 2, 2000 00:00:00" libgcj
This is the version of libgcj that I have been using along with
gcj 2.95.2 and Bryce's patches.
Matt