# HG changeset patch # User Stefan Monnier # Date 939582587 0 # Node ID 9fb5da1b86d6d8e006771a75650a58730b05db96 # Parent ce21f2e29083a4ec60ce3a6e117c8bfd01a88cdc (compile, bootstrap-compile): forgot `;' after $(setwins). diff -r ce21f2e29083 -r 9fb5da1b86d6 lisp/Makefile --- a/lisp/Makefile Sun Oct 10 01:46:11 1999 +0000 +++ b/lisp/Makefile Sun Oct 10 19:09:47 1999 +0000 @@ -112,7 +112,7 @@ 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 @@ 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 \