aboutsummaryrefslogtreecommitdiffstats
path: root/INSTALL.BZR
diff options
context:
space:
mode:
Diffstat (limited to 'INSTALL.BZR')
-rw-r--r--INSTALL.BZR27
1 files changed, 21 insertions, 6 deletions
diff --git a/INSTALL.BZR b/INSTALL.BZR
index 710a73c7048..3859e3cd4fc 100644
--- a/INSTALL.BZR
+++ b/INSTALL.BZR
@@ -4,14 +4,29 @@ See the end of the file for license conditions.
4 4
5 Building and Installing Emacs from Bazaar 5 Building and Installing Emacs from Bazaar
6 6
7If this is the first time you go through it, you'll need to configure 7Building Emacs from Bazaar requires some tools that are not needed
8before bootstrapping: 8when building from a release. You will need:
9 9
10 $ ./configure 10autoconf - at least the version specified near the start of
11 configure.in (in the AC_PREREQ command).
12automake - we recommend at least version 1.11.
13makeinfo - not strictly necessary, but highly recommended, so that
14 you can build the manuals.
15
16The `autogen.sh' script can help you figure out if you have the
17necessary tools.
18
19The first time you build, there are a couple of extra steps.
20First, generate the `configure' script:
21
22 $ ./autogen.sh
11 23
12(Normally there is no need to run `autoconf' etc. If you do need it, 24(or you can just run `autoreconf -I m4').
13the relevant command is `autoreconf -I m4'. Be aware that this will 25
14likely lead to conflicts next time you update from Bazaar.) 26You can then configure your build (use `./configure --help' to see
27options you can set):
28
29 $ ./configure
15 30
16Some of the files that are included in the Emacs tarball, such as 31Some of the files that are included in the Emacs tarball, such as
17byte-compiled Lisp files, are not stored in Bazaar. Therefore, to 32byte-compiled Lisp files, are not stored in Bazaar. Therefore, to