summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-08-25 06:12:06 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-08-25 06:12:06 (GMT)
commitae6f226b36333e0da66c3f01594aed649d283690 (patch)
tree511caac32d170e870a13d43bf871e098c7c39a9a /src
parent7fecb406eb508d05a9550a03803ffc3ab1810524 (diff)
downloadDoxygen-ae6f226b36333e0da66c3f01594aed649d283690.zip
Doxygen-ae6f226b36333e0da66c3f01594aed649d283690.tar.gz
Doxygen-ae6f226b36333e0da66c3f01594aed649d283690.tar.bz2
Fix for Windows build
Diffstat (limited to 'src')
-rw-r--r--src/latexgen.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index 5116d3e..b70f82a 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -386,7 +386,8 @@ static void writeLatexMakefile()
static void writeMakeBat()
{
#if defined(_MSC_VER)
- QCString fileName=dir()+"/make.bat";
+ QCString dir=Config_getString(LATEX_OUTPUT);
+ QCString fileName=dir+"/make.bat";
QCString latex_command = theTranslator->latexCommandName();
QCString mkidx_command = Config_getString(MAKEINDEX_CMD_NAME);
QFile file(fileName);