Fix a bug in how the LS_COLORS ln=target attribute is handled.
[coreutils/bo.git] / README-hacking
blob6a2714ad42cbea19a712a6066274dbc4f8bc9b2d
1 -*- outline -*-
3 These notes intend to help people working on the checked-out sources.
4 These requirements do not apply when building from a distribution tarball.
6 * Requirements
8 We've opted to keep only the highest-level sources in the GIT repository.
9 This eases our maintenance burden, (fewer merges etc.), but imposes more
10 requirements on anyone wishing to build from the just-checked-out sources.
11 For example, you have to use the latest stable versions of the maintainer
12 tools we depend upon, including:
14 - Automake <http://www.gnu.org/software/automake/>
15 - Autoconf <http://www.gnu.org/software/autoconf/>
16 - Bison <http://www.gnu.org/software/bison/>
17 - Gettext <http://www.gnu.org/software/gettext/>
18 - Gzip <http://www.gnu.org/software/gzip/>
19 - Tar <http://www.gnu.org/software/tar/>
20 - Wget <http://www.gnu.org/software/wget/>
22 As of this writing, the latest stable version of Gzip is 1.2.4 but we
23 suggest using test version 1.3.5 (or later, if one becomes available).
25 Valgrind <http://valgrind.org/> is also highly recommended, if
26 Valgrind supports your architecture.
28 Only building the initial full source tree will be a bit painful.
29 Later, a plain `git-pull && make' should be sufficient.
31 * First GIT checkout
33 Obviously, if you are reading these notes, you did manage to check out
34 this package from GIT.  The next step is to get other files needed to
35 build, which are extracted from other source packages:
37         $ ./bootstrap
39 And there you are!  Just
41         $ ./configure
42         $ make
43         $ make check
45 At this point, there should be no difference between your local copy,
46 and the GIT master copy:
48         $ git-diff
50 should output no difference.
52 Enjoy!
54 -----
56 Copyright (C) 2002-2007 Free Software Foundation, Inc.
58 This program is free software; you can redistribute it and/or modify
59 it under the terms of the GNU General Public License as published by
60 the Free Software Foundation; either version 2, or (at your option)
61 any later version.
63 This program is distributed in the hope that it will be useful,
64 but WITHOUT ANY WARRANTY; without even the implied warranty of
65 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
66 GNU General Public License for more details.
68 You should have received a copy of the GNU General Public License
69 along with this program; if not, write to the Free Software
70 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
71 02110-1301, USA.