diff options
| author | Glenn Morris | 2009-09-16 03:10:17 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-09-16 03:10:17 +0000 |
| commit | 124649922f929cd8194ca58ded6110a66064799f (patch) | |
| tree | 66226e9008b0bcc8402a0131217883ac0e753196 | |
| parent | 0307c7d29f872e8e2262ba7461729b493b1f4da1 (diff) | |
| download | emacs-124649922f929cd8194ca58ded6110a66064799f.tar.gz emacs-124649922f929cd8194ca58ded6110a66064799f.zip | |
Move comment so it does not get printed every time the rule runs.
| -rw-r--r-- | lisp/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 66ef1d279a5..323356024d9 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | # Maintenance productions for the Lisp directory | 1 | # Maintenance productions for the Lisp directory |
| 2 | # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, | 2 | # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, |
| 3 | # 2008, 2009 Free Software Foundation, Inc. | 3 | # 2009 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | # This file is part of GNU Emacs. | 5 | # This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -1286,10 +1286,10 @@ ELCFILES = \ | |||
| 1286 | # (e.g. src/Makefile.in may have a dependency for ../lisp/foo.elc where we | 1286 | # (e.g. src/Makefile.in may have a dependency for ../lisp/foo.elc where we |
| 1287 | # only know of $(lisp)/foo.elc). So instead we provide a direct way for | 1287 | # only know of $(lisp)/foo.elc). So instead we provide a direct way for |
| 1288 | # src/Makefile.in to rebuild a particular Lisp file, no questions asked. | 1288 | # src/Makefile.in to rebuild a particular Lisp file, no questions asked. |
| 1289 | # Use byte-compile-refresh-preloaded to try and work around some of | ||
| 1290 | # the most common problems of not bootstrapping from a clean state. | ||
| 1289 | compile-onefile: | 1291 | compile-onefile: |
| 1290 | @echo Compiling $(THEFILE) | 1292 | @echo Compiling $(THEFILE) |
| 1291 | # Use byte-compile-refresh-preloaded to try a work around some of | ||
| 1292 | # the most common bootstrapping problems. | ||
| 1293 | @$(emacs) -l bytecomp.el -f byte-compile-refresh-preloaded $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(THEFILE) | 1293 | @$(emacs) -l bytecomp.el -f byte-compile-refresh-preloaded $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(THEFILE) |
| 1294 | 1294 | ||
| 1295 | # Files MUST be compiled one by one. If we compile several files in a | 1295 | # Files MUST be compiled one by one. If we compile several files in a |