diff options
| author | Eli Zaretskii | 2012-12-11 09:49:06 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2012-12-11 09:49:06 +0200 |
| commit | d46d2d3a70ee7cc2ac156d5a2824e83e9160b96a (patch) | |
| tree | 669db805fbc6c196e4872510cfcf9860a14a4d4d | |
| parent | 4c1acb95dffa5948c7534911c07c2c3d8f390b79 (diff) | |
| download | emacs-d46d2d3a70ee7cc2ac156d5a2824e83e9160b96a.tar.gz emacs-d46d2d3a70ee7cc2ac156d5a2824e83e9160b96a.zip | |
Fix a typo in lisp/makefile.w32-in.
See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00288.html
for the details.
lisp/makefile.w32-in (compile4-SH): Fix a typo that caused term
subdirectory be skipped.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/makefile.w32-in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c07c9627d1c..17dc012fdab 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-12-11 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * makefile.w32-in (compile4-SH): Fix a typo that caused term | ||
| 4 | subdirectory be skipped. | ||
| 5 | |||
| 1 | 2012-12-11 Glenn Morris <rgm@gnu.org> | 6 | 2012-12-11 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes. | 8 | * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes. |
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index cb2cba466f6..b6beb6b292a 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in | |||
| @@ -387,7 +387,7 @@ compile3-SH: autoloads compile0-SH | |||
| 387 | done | 387 | done |
| 388 | 388 | ||
| 389 | compile4-SH: autoloads compile0-SH | 389 | compile4-SH: autoloads compile0-SH |
| 390 | for dir in $(WINS_BASIC4) $(WINS_CEDET) terms obsolete; do \ | 390 | for dir in $(WINS_BASIC4) $(WINS_CEDET) term obsolete; do \ |
| 391 | for el in $$dir/*.el; do \ | 391 | for el in $$dir/*.el; do \ |
| 392 | if test -f $$el; \ | 392 | if test -f $$el; \ |
| 393 | then \ | 393 | then \ |