diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/makefile.w32-in | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a1138afc4a2..098784d8161 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,9 @@ | |||
| 1 | 2002-07-31 Juanma Barranquero <lektu@terra.es> | 1 | 2002-07-31 Juanma Barranquero <lektu@terra.es> |
| 2 | 2 | ||
| 3 | * makefile.w32-in: Revert some changes from 2002-07-23 because | 3 | * makefile.w32-in: Revert some changes from 2002-07-23 because they |
| 4 | they don't work on MSVC/nmake builds. | 4 | don't work on MSVC/nmake builds. |
| 5 | (update-subdirs-CMD): Generate the right list of subdirectories. From | ||
| 6 | Tak Ota <Takaaki.Ota@am.sony.com>. | ||
| 5 | 7 | ||
| 6 | 2002-07-30 Kai Gro,b_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> | 8 | 2002-07-30 Kai Gro,b_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> |
| 7 | 9 | ||
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index e3d42edc8fb..a2c2be48b13 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in | |||
| @@ -195,11 +195,11 @@ subdirs.el: | |||
| 195 | update-subdirs: update-subdirs-$(SHELLTYPE) | 195 | update-subdirs: update-subdirs-$(SHELLTYPE) |
| 196 | 196 | ||
| 197 | update-subdirs-CMD: doit | 197 | update-subdirs-CMD: doit |
| 198 | @set QWINS= | ||
| 199 | @for %d in ($(WINS)) do if not (%d)==(term) set QWINS=%QWINS% "%d" | ||
| 200 | echo ;; In load-path, after this directory should come> subdirs.el | 198 | echo ;; In load-path, after this directory should come> subdirs.el |
| 201 | echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el | 199 | echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el |
| 202 | echo (normal-top-level-add-to-load-path $(SQUOTE)(%QWINS%))>> subdirs.el | 200 | echo (normal-top-level-add-to-load-path $(SQUOTE)(>> subdirs.el |
| 201 | @for %d in ($(WINS)) do if not (%d)==(term) echo "%d">> subdirs.el | ||
| 202 | echo ))>> subdirs.el | ||
| 203 | 203 | ||
| 204 | update-subdirs-SH: doit | 204 | update-subdirs-SH: doit |
| 205 | wd=$(lisp); $(setwins); \ | 205 | wd=$(lisp); $(setwins); \ |