aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2009-01-11 23:07:18 +0000
committerJuri Linkov2009-01-11 23:07:18 +0000
commitd0bec92cabb061331f14460c93b186b3b86e15df (patch)
tree8694fd5a48fddd3a3e75fea39ab438cb36f3e98e
parent91ca6606a6cfa3cd5b126cf32375ea9bbf765359 (diff)
downloademacs-d0bec92cabb061331f14460c93b186b3b86e15df.tar.gz
emacs-d0bec92cabb061331f14460c93b186b3b86e15df.zip
Move configuration explicitly to the first step.
-rw-r--r--ChangeLog4
-rw-r--r--INSTALL.CVS8
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 126fd817e6e..9808c9ff53a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12009-01-11 Juri Linkov <juri@jurta.org>
2
3 * INSTALL.CVS: Move configuration explicitly to the first step.
4
12009-01-09 Glenn Morris <rgm@gnu.org> 52009-01-09 Glenn Morris <rgm@gnu.org>
2 6
3 * .dir-locals.el: Don't set indent-tabs-mode. 7 * .dir-locals.el: Don't set indent-tabs-mode.
diff --git a/INSTALL.CVS b/INSTALL.CVS
index 9960e1ac34e..bf27ea71625 100644
--- a/INSTALL.CVS
+++ b/INSTALL.CVS
@@ -5,6 +5,11 @@ See the end of the file for license conditions.
5 5
6 Building and Installing Emacs from CVS 6 Building and Installing Emacs from CVS
7 7
8If this is the first time you go through it, you'll need to configure
9before bootstrapping:
10
11 $ ./configure
12
8Some of the files that are included in the Emacs tarball, such as 13Some of the files that are included in the Emacs tarball, such as
9byte-compiled Lisp files, are not stored in the CVS repository. 14byte-compiled Lisp files, are not stored in the CVS repository.
10Therefore, to build from CVS you must run "make bootstrap" 15Therefore, to build from CVS you must run "make bootstrap"
@@ -13,9 +18,6 @@ instead of just "make":
13 $ cvs update -dP 18 $ cvs update -dP
14 $ make bootstrap 19 $ make bootstrap
15 20
16Of course, if this is the first time you go through it, you'll need to do
17./configure before the "make bootstrap".
18
19Normally, it is not necessary to use "make bootstrap" after every CVS 21Normally, it is not necessary to use "make bootstrap" after every CVS
20update. "make" should work in 90% of the cases and be much quicker. 22update. "make" should work in 90% of the cases and be much quicker.
21 23