From: Stefan Monnier Date: Sun, 10 Oct 1999 19:09:47 +0000 (+0000) Subject: (compile, bootstrap-compile): forgot `;' after $(setwins). X-Git-Tag: emacs-pretest-21.0.90~6482 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fdb9d1d98c3b88395cea8ab1ffa2fe3dddfd62a8;p=emacs.git (compile, bootstrap-compile): forgot `;' after $(setwins). --- 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) compile: doit wd=`pwd`; \ find $$wd -name "*.elc" -print | xargs chmod +w; \ - $(setwins) \ + $(setwins); \ loadpath="(setq load-path '($$wins))"; \ dont_compile=`echo $(DONTCOMPILE)`; \ for el in $(EL); do \ @@ -136,7 +136,7 @@ compile: doit bootstrap-compile: doit wd=`pwd`; \ find $$wd -name "*.elc" -print | xargs rm -f \ - $(setwins) \ + $(setwins); \ loadpath="(setq load-path '($$wins))"; \ dont_compile=`echo $(DONTCOMPILE)`; \ for el in $(EL); do \