This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
Re: libjava grievances
- To: Tom Tromey <tromey at cygnus dot com>
- Subject: Re: libjava grievances
- From: "Clark C. Evans" <clark dot evans at manhattanproject dot com>
- Date: Wed, 22 Sep 1999 09:02:33 -0400 (EDT)
- cc: Mikhail Teterin <mi at aldan dot algebra dot com>, java-discuss at sourceware dot cygnus dot com
On Tue, 21 Sep 1999, Tom Tromey wrote:
> Ok. You need to make a new directory and run configure from there. I
> use a parallel directory (at some level as libgcj --
> ../libgcj/configure), but other people like other things.
Pardon my ignorance, but I do not seem to get the libgcj source
after fetching from the CVS repository:
[clark@localhost egcs]$ find . -name libgcj -print
[clark@localhost egcs]$
I use the egcs CVS repository using three scripts:
[clark@localhost egcs]$ cat cvslogin
echo pass=anoncvs
cvs -d :pserver:anoncvs@egcs.cygnus.com:/egcs/carton/cvsfiles login
[clark@localhost egcs]$ cat cvsinit
date > cvsinit.out
cvs -d :pserver:anoncvs@egcs.cygnus.com:/egcs/carton/cvsfiles -z3 \
co -r egcs_latest_snapshot egcs >> cvsinit.out 2>> cvsinit.out &
tail -f cvsinit.out
[clark@localhost egcs]$ cat cvsupdate
echo `date` > cvsupdate.out
cvs -z3 update -d -P >> cvsupdate.out 2>> cvsupdate.out &
tail -f cvsupdate.out
Any suggestions?
Thanks!
Clark