summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMartin Herkt <lachs0r@srsfckn.biz>2013-09-25 16:04:41 +0200
committerMartin Herkt <lachs0r@srsfckn.biz>2013-09-25 16:04:41 +0200
commit4e6751609ee1798539c0338ac930bdb4b1e80242 (patch)
tree1f5287e628bc4d485f4f5dcdc38b9651841543ad /configure
parentcc12f05a52a47c8fc2cf36c7e908f3b350e10ca0 (diff)
downloadmpv-4e6751609ee1798539c0338ac930bdb4b1e80242.tar.bz2
mpv-4e6751609ee1798539c0338ac930bdb4b1e80242.tar.xz
configure: make the pdflatex check use the tempdir
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure b/configure
index d17461f0f7..482a34aecc 100755
--- a/configure
+++ b/configure
@@ -941,13 +941,12 @@ fi
echocheck "whether to build manual PDFs with rst2latex"
texcheck() {
- echo test | $_rst2latex --config=DOCS/man/docutils.conf | pdflatex -halt-on-error -draftmode
+ echo test | $_rst2latex --config=DOCS/man/docutils.conf | pdflatex -halt-on-error -draftmode -output-directory="$mplayer_tmpdir"
}
if test "$_build_pdf" = auto ; then
_build_pdf=no
command_check texcheck && _build_pdf=yes
- rm -f texput.{log,aux,out}
else
_build_pdf=no
fi