CVS Mozilla
Notes
This is the information on how
to get and install mozilla from cvs... additional info at http://linux-sxs.org
cvs checkout
#!/bin/sh
# script to check out mozilla as source
echo The password is "anonymous"
export CVSROOT=':pserver:[email protected]:/cvsroot'
cvs login
cvs checkout mozilla
converting a tarball
to a working cvs sandbox
- download a tarball;
- unpack it;
- and run ``cvs -z3 checkout -PA mozilla/client.mk'' in the same directory you unpacked
the tarball,
- then run ``make -f mozilla/client.mk checkout
MOZ_CO_FLAGS=-PA''
James McDonald