(compile, bootstrap-compile): forgot `;' after $(setwins).
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 10 Oct 1999 19:09:47 +0000 (19:09 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 10 Oct 1999 19:09:47 +0000 (19:09 +0000)
lisp/Makefile

index e37d101..c6f16a8 100644 (file)
@@ -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                                     \