summaryrefslogtreecommitdiffstats
path: root/examples/example.cfg
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-12-19 12:03:47 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-12-19 12:03:47 (GMT)
commit8d45cd1895ca7a9a53f9a02cdf7d66c239bdc504 (patch)
treeced0fdac30161a7db37dbfda7fab03c875cec9ee /examples/example.cfg
parent77a37d141d3603c0089bc4a231c9381c1bb7d707 (diff)
downloadDoxygen-8d45cd1895ca7a9a53f9a02cdf7d66c239bdc504.zip
Doxygen-8d45cd1895ca7a9a53f9a02cdf7d66c239bdc504.tar.gz
Doxygen-8d45cd1895ca7a9a53f9a02cdf7d66c239bdc504.tar.bz2
Doxygen's own documentation doesn't build with recent LaTeX version
Due to a recent change in the new distribution of LaTeX in the handling of the "input" commands we get the error like: ``` Appendix D. (../html/examples/group/latex/refman_doc.tex (../html/examples/group/latex//gro up__group1.tex) [243] ! I can't write on file `../html/examples/group/latex//group__group2.aux'. \@include ...mmediate \openout \@partaux "#1.aux" \immediate \write \@partau... l.3 \include{group__group2} Please type another output file name ! Emergency stop. \@include ...mmediate \openout \@partaux "#1.aux" \immediate \write \@partau... l.3 \include{group__group2} *** (job aborted, file error in nonstop mode) ``` The problem is that now an intermediate file is written to `../html/examples/group/latex//group__group2.aux` that was written in the older distributions as `./group__group2.aux`, so in the current directory. Writing to sub directories of the current directory is possible but it is not allowed (unless special, dangerous, options are used) to write to directories outside tgese directories. (see also: https://tex.stackexchange.com/questions/575120/problem-writing-aux-file) This fix writes the examples in subdirectories in the latex directory and not under the, parallel, html directory. This means also that there is a cleaner and clearer distinction between the html and latex output.
Diffstat (limited to 'examples/example.cfg')
-rw-r--r--examples/example.cfg4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/example.cfg b/examples/example.cfg
index 0b2d027..1f8809d 100644
--- a/examples/example.cfg
+++ b/examples/example.cfg
@@ -1,5 +1,7 @@
PROJECT_NAME = "Example Command"
-OUTPUT_DIRECTORY = ../html/examples/example
+OUTPUT_DIRECTORY = ..
+HTML_OUTPUT = html/examples/example/html
+LATEX_OUTPUT = latex/examples/example/latex
GENERATE_TAGFILE = example.tag
GENERATE_LATEX = YES
GENERATE_MAN = NO