diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-07-31 08:09:58 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-07-31 08:09:58 +0000 |
commit | d053bf7ecbf3d214ba3d2fb2dae52f8f264b9834 (patch) | |
tree | eb4d5023488d1fe70faf75468f8ba0063ac44291 /lisp/makefile.w32-in | |
parent | 0702b9956766a6afca23c300f6e228e3e4fb846e (diff) | |
download | emacs-d053bf7ecbf3d214ba3d2fb2dae52f8f264b9834.tar.gz |
(update-subdirs-CMD): Generate the right list of subdirectories. From
Tak Ota <Takaaki.Ota@am.sony.com>.
Diffstat (limited to 'lisp/makefile.w32-in')
-rw-r--r-- | lisp/makefile.w32-in | 6 |
1 files changed, 3 insertions, 3 deletions
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: update-subdirs: update-subdirs-$(SHELLTYPE) update-subdirs-CMD: doit - @set QWINS= - @for %d in ($(WINS)) do if not (%d)==(term) set QWINS=%QWINS% "%d" echo ;; In load-path, after this directory should come> subdirs.el echo ;; certain of its subdirectories. Here we specify them.>> subdirs.el - echo (normal-top-level-add-to-load-path $(SQUOTE)(%QWINS%))>> subdirs.el + echo (normal-top-level-add-to-load-path $(SQUOTE)(>> subdirs.el + @for %d in ($(WINS)) do if not (%d)==(term) echo "%d">> subdirs.el + echo ))>> subdirs.el update-subdirs-SH: doit wd=$(lisp); $(setwins); \ |