changeset 25969:9fb5da1b86d6

(compile, bootstrap-compile): forgot `;' after $(setwins).
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 10 Oct 1999 19:09:47 +0000
parents ce21f2e29083
children aba4d088f0d8
files lisp/Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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					\