diff options
| author | Glenn Morris | 2008-06-07 02:47:27 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-06-07 02:47:27 +0000 |
| commit | b464059ae8072bbd19c27ed0b4f2ecd4c6f8be95 (patch) | |
| tree | 2daa39cda7eadd02ac10ce9d10bf4804276e7cb4 | |
| parent | 183965528848da1618d523da5f6f3d53ef1762a6 (diff) | |
| download | emacs-b464059ae8072bbd19c27ed0b4f2ecd4c6f8be95.tar.gz emacs-b464059ae8072bbd19c27ed0b4f2ecd4c6f8be95.zip | |
(bootstrap-build): Remove mostlyclean, since it seems to serve no
purpose.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Makefile.in | 4 |
2 files changed, 8 insertions, 1 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-06-07 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (bootstrap-build): Remove mostlyclean, since it seems to | ||
| 4 | serve no purpose. | ||
| 5 | |||
| 1 | 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu> | 6 | 2008-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 | |||
| 843 | bootfast: bootstrap-clean-before-fast FRC | 843 | bootfast: 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 | ||
| 846 | bootstrap-build: FRC | 849 | bootstrap-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 | ||