Bruno Haible <[EMAIL PROTECTED]> writes:
> Since you haven't applied this yet, I added a similar explanation as error
> handling to the Makefile:
Thanks, that seems more likely to be noticed by future users than my
approach.
/Simon
>
> 2008-03-09 Bruno Haible <[EMAIL PROTECTED]>
>
> * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
> Report and solution by Simon Josefsson.
>
> *** doc/Makefile.orig 2008-03-09 23:59:32.000000000 +0100
> --- doc/Makefile 2008-03-09 23:56:20.000000000 +0100
> ***************
> *** 16,22 ****
> LANG= LC_MESSAGES= LC_ALL= LANGUAGE= makeinfo --no-split
> --reference-limit=2000 $<
>
> %.pdf: %.texi
> ! texi2pdf $<
>
> all: info html dvi
> info: $(doc).info
> --- 16,22 ----
> LANG= LC_MESSAGES= LC_ALL= LANGUAGE= makeinfo --no-split
> --reference-limit=2000 $<
>
> %.pdf: %.texi
> ! texi2pdf $< || { if texi2pdf $< 2>/dev/null | grep 'TeX capacity
> exceeded, sorry \[save size=' > /dev/null; then echo '*** You must increase
> the save_size in your texmf.cnf file.'; fi; exit 1; }
>
> all: info html dvi
> info: $(doc).info