aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier1999-10-10 19:09:47 +0000
committerStefan Monnier1999-10-10 19:09:47 +0000
commitfdb9d1d98c3b88395cea8ab1ffa2fe3dddfd62a8 (patch)
treeccf1f2d2b3bfd9309bcd324db56caf079d159a83
parent77162a4f00b6446c2143b1269924e55cf0cca836 (diff)
downloademacs-fdb9d1d98c3b88395cea8ab1ffa2fe3dddfd62a8.tar.gz
emacs-fdb9d1d98c3b88395cea8ab1ffa2fe3dddfd62a8.zip
(compile, bootstrap-compile): forgot `;' after $(setwins).
-rw-r--r--lisp/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/Makefile b/lisp/Makefile
index e37d1014a2a..c6f16a86445 100644
--- a/lisp/Makefile
+++ b/lisp/Makefile
@@ -112,7 +112,7 @@ TAGS-LISP: $(lispsource)$(lisptagsfiles1) $(lispsource)$(lisptagsfiles2)
112compile: doit 112compile: doit
113 wd=`pwd`; \ 113 wd=`pwd`; \
114 find $$wd -name "*.elc" -print | xargs chmod +w; \ 114 find $$wd -name "*.elc" -print | xargs chmod +w; \
115 $(setwins) \ 115 $(setwins); \
116 loadpath="(setq load-path '($$wins))"; \ 116 loadpath="(setq load-path '($$wins))"; \
117 dont_compile=`echo $(DONTCOMPILE)`; \ 117 dont_compile=`echo $(DONTCOMPILE)`; \
118 for el in $(EL); do \ 118 for el in $(EL); do \
@@ -136,7 +136,7 @@ compile: doit
136bootstrap-compile: doit 136bootstrap-compile: doit
137 wd=`pwd`; \ 137 wd=`pwd`; \
138 find $$wd -name "*.elc" -print | xargs rm -f \ 138 find $$wd -name "*.elc" -print | xargs rm -f \
139 $(setwins) \ 139 $(setwins); \
140 loadpath="(setq load-path '($$wins))"; \ 140 loadpath="(setq load-path '($$wins))"; \
141 dont_compile=`echo $(DONTCOMPILE)`; \ 141 dont_compile=`echo $(DONTCOMPILE)`; \
142 for el in $(EL); do \ 142 for el in $(EL); do \