aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2002-07-31 08:09:58 +0000
committerJuanma Barranquero2002-07-31 08:09:58 +0000
commitd053bf7ecbf3d214ba3d2fb2dae52f8f264b9834 (patch)
treeeb4d5023488d1fe70faf75468f8ba0063ac44291
parent0702b9956766a6afca23c300f6e228e3e4fb846e (diff)
downloademacs-d053bf7ecbf3d214ba3d2fb2dae52f8f264b9834.tar.gz
emacs-d053bf7ecbf3d214ba3d2fb2dae52f8f264b9834.zip
(update-subdirs-CMD): Generate the right list of subdirectories. From
Tak Ota <Takaaki.Ota@am.sony.com>.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/makefile.w32-in6
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 @@
12002-07-31 Juanma Barranquero <lektu@terra.es> 12002-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
62002-07-30 Kai Gro,b_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> 82002-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:
195update-subdirs: update-subdirs-$(SHELLTYPE) 195update-subdirs: update-subdirs-$(SHELLTYPE)
196 196
197update-subdirs-CMD: doit 197update-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
204update-subdirs-SH: doit 204update-subdirs-SH: doit
205 wd=$(lisp); $(setwins); \ 205 wd=$(lisp); $(setwins); \