summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-06 13:09:41 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-06 13:09:41 +0000
commita7e6593aecc4103292bfa71cb9d74f6678cbf025 (patch)
tree75f8d04e3d8fb1ec79d26f8b7118b220a98d73cf
parent1c3eb3f01bb7347ff0ab44cfd203707a86d42b4e (diff)
downloademacs-a7e6593aecc4103292bfa71cb9d74f6678cbf025.tar.gz
(update-subdirs-CMD): Fix generation of subdirs.el (from Tak Ota
<Takaaki.Ota@am.sony.com>) and make it non-compilable.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/makefile.w32-in9
2 files changed, 11 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1852fe9ea53..430f36c06ac 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2003-02-06 Juanma Barranquero <lektu@terra.es>
+
+ * makefile.w32-in (update-subdirs-CMD): Fix generation of
+ subdirs.el (from Tak Ota <Takaaki.Ota@am.sony.com>) and make it
+ non-compilable.
+
2003-02-06 Matthew Swift <swift@alum.mit.edu>
* dired.el (dired-move-to-filename-regexp): Support "K" suffix on
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in
index ab286edfa42..9f03c490e2b 100644
--- a/lisp/makefile.w32-in
+++ b/lisp/makefile.w32-in
@@ -181,11 +181,12 @@ 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 ;; -*- no-byte-compile: t -*->subdirs.el
+ 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); \