aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorAlan Mackenzie2022-01-31 19:46:27 +0000
committerAlan Mackenzie2022-01-31 19:46:27 +0000
commitbe2566eeab627dd8c38cfb3adb678a925af300bc (patch)
tree2d52d588eb1eb051701e2d472f2a02c5c2ed04bf /admin
parent5819fcb63b42a302a3b3588646cf3e043dc07a39 (diff)
downloademacs-be2566eeab627dd8c38cfb3adb678a925af300bc.tar.gz
emacs-be2566eeab627dd8c38cfb3adb678a925af300bc.zip
Enlarge max-specpdl-size for generation of files in .../admin/grammars
* admin/grammars/Makefile.in: Add a --eval clause to set max-specpdl-size to 5000 (previously 2500) for these targets.
Diffstat (limited to 'admin')
-rw-r--r--admin/grammars/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/admin/grammars/Makefile.in b/admin/grammars/Makefile.in
index 6f699430895..4ca88982cde 100644
--- a/admin/grammars/Makefile.in
+++ b/admin/grammars/Makefile.in
@@ -34,7 +34,8 @@ top_builddir = @top_builddir@
34unexport EMACSDATA EMACSDOC EMACSLOADPATH EMACSPATH 34unexport EMACSDATA EMACSDOC EMACSLOADPATH EMACSPATH
35 35
36EMACS = ${top_builddir}/src/emacs 36EMACS = ${top_builddir}/src/emacs
37emacs = "${EMACS}" -batch --no-site-file --no-site-lisp --eval '(setq load-prefer-newer t)' 37emacs = "${EMACS}" -batch --no-site-file --no-site-lisp \
38 --eval '(setq max-specpdl-size 5000)' --eval '(setq load-prefer-newer t)'
38 39
39make_bovine = ${emacs} -l semantic/bovine/grammar -f bovine-batch-make-parser 40make_bovine = ${emacs} -l semantic/bovine/grammar -f bovine-batch-make-parser
40make_wisent = ${emacs} -l semantic/wisent/grammar -f wisent-batch-make-parser 41make_wisent = ${emacs} -l semantic/wisent/grammar -f wisent-batch-make-parser