]> git.eshelyaron.com Git - emacs.git/commitdiff
(bootstrap-lisp): Don't ignore errors.
authorRichard M. Stallman <rms@gnu.org>
Tue, 15 Oct 2002 21:15:52 +0000 (21:15 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 15 Oct 2002 21:15:52 +0000 (21:15 +0000)
ChangeLog
Makefile.in

index b0f83fe365338778b85c958a970d9f2d0a90be6c..0c849b70ddb84cd2f6912f79a5480b463f122974 100644 (file)
--- 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
index 8fcf638d7b969519f5d20f2ad2a8fc7d559aea33..618eaf130872ffcf884348efe4e9121d0aa0fb30 100644 (file)
@@ -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)