aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Innes2000-09-17 20:54:47 +0000
committerAndrew Innes2000-09-17 20:54:47 +0000
commit202c7edc03a5cb9d689d45d1b292944b0bee19e6 (patch)
tree03e7a886850069e3f7d2d96a75385e1779ef3395
parente07436e1c6334ccf39e383698f43a90b2895456d (diff)
downloademacs-202c7edc03a5cb9d689d45d1b292944b0bee19e6.tar.gz
emacs-202c7edc03a5cb9d689d45d1b292944b0bee19e6.zip
(compile-files): No need to make .elc files
read-only, since they aren't under VC now.
-rw-r--r--lisp/makefile.nt2
-rw-r--r--lisp/makefile.w32-in2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/makefile.nt b/lisp/makefile.nt
index 696b8c96294..9f92ab2560c 100644
--- a/lisp/makefile.nt
+++ b/lisp/makefile.nt
@@ -175,7 +175,7 @@ $(DONTCOMPILE:.el=.elc):
175# load's in the files being compiled find the right files. 175# load's in the files being compiled find the right files.
176 176
177compile-files: subdirs.el doit 177compile-files: subdirs.el doit
178 -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g 178# -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g
179 for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f 179 for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f
180 for %f in ($(lisp) $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g 180 for %f in ($(lisp) $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g
181 181
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in
index 705f3e6aa0c..ebe79c14a52 100644
--- a/lisp/makefile.w32-in
+++ b/lisp/makefile.w32-in
@@ -194,7 +194,7 @@ compile-files: subdirs.el compile-files-$(SHELLTYPE) doit
194 194
195compile-files-CMD: 195compile-files-CMD:
196 set EMACSLOADPATH=$(lisp) 196 set EMACSLOADPATH=$(lisp)
197 -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g 197# -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g
198 for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f 198 for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f
199 for %f in ($(lisp) $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g 199 for %f in ($(lisp) $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g
200 200