summaryrefslogtreecommitdiffstats
path: root/src/latexgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r--src/latexgen.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index a714539..40ad877 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -186,6 +186,8 @@ static void writeMakeBat()
exit(1);
}
FTextStream t(&file);
+ t << "set Dir_Old=%cd%\n";
+ t << "cd /D %~dp0\n\n";
t << "del /s /f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf\n\n";
if (!Config_getBool("USE_PDFLATEX")) // use plain old latex
{
@@ -246,6 +248,8 @@ static void writeMakeBat()
t << "endlocal\n";
t << mkidx_command << " refman.idx\n";
t << "pdflatex refman\n";
+ t << "cd /D %Dir_Old%\n";
+ t << "set Dir_Old=\n";
}
#endif
}