aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-06-07 02:47:27 +0000
committerGlenn Morris2008-06-07 02:47:27 +0000
commitb464059ae8072bbd19c27ed0b4f2ecd4c6f8be95 (patch)
tree2daa39cda7eadd02ac10ce9d10bf4804276e7cb4
parent183965528848da1618d523da5f6f3d53ef1762a6 (diff)
downloademacs-b464059ae8072bbd19c27ed0b4f2ecd4c6f8be95.tar.gz
emacs-b464059ae8072bbd19c27ed0b4f2ecd4c6f8be95.zip
(bootstrap-build): Remove mostlyclean, since it seems to serve no
purpose.
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 53c7e220901..6e49e7aa3cb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12008-06-07 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (bootstrap-build): Remove mostlyclean, since it seems to
4 serve no purpose.
5
12008-06-01 Dan Nicolaescu <dann@ics.uci.edu> 62008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
2 7
3 * configure.in (USE_LUCID, USE_MOTIF): Don't use "==". 8 * configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
diff --git a/Makefile.in b/Makefile.in
index 653d0e5a8b6..3b3d7cf9e96 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -843,11 +843,13 @@ bootstrap: bootstrap-clean-before FRC
843bootfast: bootstrap-clean-before-fast FRC 843bootfast: bootstrap-clean-before-fast FRC
844 $(MAKE) $(MFLAGS) info bootstrap-build 844 $(MAKE) $(MFLAGS) info bootstrap-build
845 845
846## There used to be a src; mostlyclean before all, but it does not
847## seem to serve any purpose, and compiles things twice.
848## http://lists.gnu.org/archive/html/emacs-devel/2008-06/msg00104.html
846bootstrap-build: FRC 849bootstrap-build: FRC
847 (cd lisp; $(MAKE) $(MFLAGS) bootstrap-prepare) 850 (cd lisp; $(MAKE) $(MFLAGS) bootstrap-prepare)
848 (cd src; $(MAKE) $(MFLAGS) bootstrap) 851 (cd src; $(MAKE) $(MFLAGS) bootstrap)
849 (cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs${EXEEXT}) 852 (cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs${EXEEXT})
850 (cd src; $(MAKE) $(MFLAGS) mostlyclean)
851 $(MAKE) $(MFLAGS) all 853 $(MAKE) $(MFLAGS) all
852 (cd lisp; $(MAKE) $(MFLAGS) bootstrap-after) 854 (cd lisp; $(MAKE) $(MFLAGS) bootstrap-after)
853 855