summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-10-15 21:15:52 +0000
committerRichard M. Stallman <rms@gnu.org>2002-10-15 21:15:52 +0000
commit424c9772f0571da2bb4df51add89ad6265fc9f2b (patch)
treef1121d3a6d2c92d4d48b28aef9d33d2c7e1b0057
parent82aa0179ee52c91b09a27516c5edcf5e0abffcd9 (diff)
downloademacs-424c9772f0571da2bb4df51add89ad6265fc9f2b.tar.gz
(bootstrap-lisp): Don't ignore errors.
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b0f83fe3653..0c849b70ddb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-10-15 Richard M. Stallman <rms@gnu.org>
+
+ * Makefile.in (bootstrap-lisp): Don't ignore errors.
+ Fix typo in .PHONY spec.
+
2002-08-26 Kim F. Storm <storm@cua.dk>
* Makefile.in (install-arch-indep): Do not remove DOC file
diff --git a/Makefile.in b/Makefile.in
index 8fcf638d7b9..618eaf13087 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -663,7 +663,7 @@ dvi:
### special emacs executable is built from Lisp sources, which is then
### used to compile Lisp files. The last step is a "normal" make.
-.PHONY: bootstrap bootstrap-lisp-1 boostrap-src bootstrap-lisp bootstrap-clean
+.PHONY: bootstrap bootstrap-lisp-1 bootstrap-src bootstrap-lisp bootstrap-clean
.PHONY: maybe_bootstrap
maybe_bootstrap:
@@ -677,7 +677,7 @@ bootstrap-lisp-1:
(cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean)
bootstrap-lisp:
- -(cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs)
+ (cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs)
bootstrap-src:
(cd src; $(MAKE) $(MFLAGS) bootstrap)