comparison lisp/Makefile.in @ 58341:b31dca5987ad

(compile): Set `max-specpdl-size' before compiling.
author Luc Teirlinck <teirllm@auburn.edu>
date Sat, 20 Nov 2004 03:06:41 +0000
parents f748a7c91b98
children 29561dbc0629
comparison
equal deleted inserted replaced
58340:6ae939127d99 58341:b31dca5987ad
234 tr ' ' '\012\012' | sort | uniq -u`; \ 234 tr ' ' '\012\012' | sort | uniq -u`; \
235 for el in $(COMPILE_FIRST) $$els; do \ 235 for el in $(COMPILE_FIRST) $$els; do \
236 if test -f $$el; \ 236 if test -f $$el; \
237 then \ 237 then \
238 echo Compiling $$el; \ 238 echo Compiling $$el; \
239 $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \ 239 $(emacs) --eval "(setq max-specpdl-size 650)" \
240 -f batch-byte-compile-if-not-done $$el || exit 1; \
240 fi \ 241 fi \
241 done 242 done
242 243
243 # Compile all Lisp files, except those from DONTCOMPILE. This 244 # Compile all Lisp files, except those from DONTCOMPILE. This
244 # is like `compile' but compiles files unconditionally. 245 # is like `compile' but compiles files unconditionally.