Changes between Version 1 and Version 2 of Ticket #14626
- Timestamp:
- 05/22/13 15:39:52 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14626 – Description
v1 v2 1 When building the PDF documentation, if there is problem while running `latex`, then the docbuilder just hangs forever . There is no obvious clue what the problem is apart from a message like the following (example from #9107) in the log file:1 When building the PDF documentation, if there is problem while running `latex`, then the docbuilder just hangs forever ''after building all documentation''. There is no obvious clue what the problem is apart from a message like the following (example from #9107) in the log file: 2 2 {{{ 3 3 ! LaTeX Error: Too deeply nested. … … 10 10 11 11 ? 12 Implicit mode ON; LaTeX internals redefined13 (/usr/share/texmf-texlive/tex/latex/ltxmisc/url.sty14 (/usr/share/texmf-texlive/tex/latex/base/t1enc.def)15 12 ! Emergency stop. 16 13 ... … … 20 17 ! ==> Fatal error occurred, no output PDF file produced! 21 18 Transcript written on categories.log. 22 )make[1]: *** [categories.pdf] Error 1 19 make[1]: *** [categories.pdf] Error 1 20 make[1]: Leaving directory `/mazur/release/sage-5.10.beta4-boxen-x86_64-Linux/devel/sage-main/doc/output/latex/en/reference/categories' 21 Exception in thread Thread-6: 22 Traceback (most recent call last): 23 File "/mazur/release/sage-5.10.beta4-boxen-x86_64-Linux/local/lib/python/threading.py", line 810, in __bootstrap_inner 24 self.run() 25 File "/mazur/release/sage-5.10.beta4-boxen-x86_64-Linux/local/lib/python/threading.py", line 763, in run 26 self.__target(*self.__args, **self.__kwargs) 27 File "/mazur/release/sage-5.10.beta4-boxen-x86_64-Linux/local/lib/python/multiprocessing/pool.py", line 376, in _handle_results 28 task = get() 29 TypeError: ('__init__() takes at least 3 arguments (1 given)', <class 'subprocess.CalledProcessError'>, ()) 23 30 }}} 24 31 25 Also: the docbuilder should use `$MAKE` instead of `make`. 32 This looks like a bug in the Python `subprocess` module. 33 34 Also: the docbuilder should use $MAKE instead of make.