From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: John Paul Wallington Newsgroups: gmane.emacs.help Subject: Re: cookbook-like "idiots" recipe for grabbing a CVS emacs? Date: Thu, 28 Aug 2003 05:40:19 +0100 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <87ekz6wg24.fsf@indigo.shootybangbang.com> References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1062046055 19338 80.91.224.253 (28 Aug 2003 04:47:35 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 28 Aug 2003 04:47:35 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Aug 28 06:47:33 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19sEh3-0005Oh-00 for ; Thu, 28 Aug 2003 06:47:33 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.22) id 19sEgT-0000Up-1p for geh-help-gnu-emacs@m.gmane.org; Thu, 28 Aug 2003 00:46:57 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!headwall.stanford.edu!fu-berlin.de!uni-berlin.de!host217-44-221-169.range217-44.btcentralplus.COM!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 41 Original-NNTP-Posting-Host: host217-44-221-169.range217-44.btcentralplus.com (217.44.221.169) Original-X-Trace: news.uni-berlin.de 1062045692 10715460 217.44.221.169 (16 [170119]) X-Orig-Path: indigo.shootybangbang.com!news X-Attribution: jpw X-Face: R(_z-rF:grdKO.*u`n); p.i$Eiz=h^CO5eDYv"4:K@#\HN09*Ykx}}B{kF/KH}%f_o^Wp List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:12115 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:12115 dkcombs@panix.com (David Combs) wrote: > Could someone show me some > "for total-dummies" recipe for actually grabbing the CVS emacs? cd into the directory you would like the emacs sources to be in. (for example, I put all my cvs snarfed programs into /build) then type: cvs -d:pserver:anoncvs@subversions.gnu.org:/cvsroot/emacs login when you are prompted for a password just press return. (the password for anonymous access is the empty string) then type: cvs -z3 -d:pserver:anoncvs@subversions.gnu.org:/cvsroot/emacs co emacs (co means checkout) bingo! you should have an emacs source tree. Read emacs/INSTALL-CVS, especially: Some of the files that are included in the Emacs tarball, such as byte-compiled Lisp files, are not stored in the CVS repository. Therefore, to build from CVS you must run "make bootstrap" instead of just "make": $ ./configure $ make bootstrap After some time has passed you might want to update your sources, to get recent changes. I'm not sure what is the best way to do that, but a straightforward way is to type: cvs up from within the emacs directory.