* README-cvs: Fix typo in update command.
[platform/upstream/coreutils.git] / README-cvs
1 -*- outline -*-
2
3 These notes intend to help people working on the CVS version of
4 this package.
5
6 * Requirements
7
8 Only the sources are installed in the CVS repository (to ease the
9 maintenance, merges etc.), therefore you will have to get the latest
10 stable versions of the maintainer tools we depend upon, including:
11
12 - Automake <http://www.gnu.org/software/automake/>
13 - Autoconf <http://www.gnu.org/software/autoconf/>
14 - Gettext <http://www.gnu.org/software/gettext/>
15 - Gzip <http://www.gnu.org/software/gzip/>
16 - Tar <http://www.gnu.org/software/tar/>
17 - Wget <http://www.gnu.org/software/wget/>
18
19 As of this writing, the latest stable version of Gzip is 1.2.4 but we
20 suggest using test version 1.3.5 (or later, if one becomes available).
21
22 Valgrind <http://valgrind.org/> is also highly recommended, if
23 Valgrind supports your architecture.
24
25 Only building the initial full source tree will be a bit painful,
26 later, a plain `cvs update -P && make' should be sufficient.
27
28 * First CVS checkout
29
30 Obviously, if you are reading these notes, you did manage to check out
31 this package from CVS.  The next step is to get other files needed to
32 build, which are extracted from other source packages:
33
34         $ ./bootstrap
35
36 And there you are!  Just
37
38         $ ./configure
39         $ make
40         $ make check
41
42 At this point, there should be no difference between your local copy,
43 and the CVS master copy:
44
45         $ cvs diff
46
47 should output no difference.
48
49 Enjoy!
50
51 -----
52
53 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
54 Inc.
55
56 This program is free software; you can redistribute it and/or modify
57 it under the terms of the GNU General Public License as published by
58 the Free Software Foundation; either version 2, or (at your option)
59 any later version.
60
61 This program is distributed in the hope that it will be useful,
62 but WITHOUT ANY WARRANTY; without even the implied warranty of
63 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
64 GNU General Public License for more details.
65
66 You should have received a copy of the GNU General Public License
67 along with this program; if not, write to the Free Software
68 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
69 02110-1301, USA.