org: move babel's temporary directory in builddir

Fixes #244, reported by Vincent Tourneur.

* doc/org/.dir-locals.el.in, doc/org/init.el.in: Define
org-babel-temporary-directory and create the directory.
This commit is contained in:
Alexandre Duret-Lutz 2017-03-18 18:44:25 +01:00
parent 1290d48379
commit 90a8a912e0
2 changed files with 9 additions and 1 deletions

View file

@ -28,6 +28,8 @@
(C . t)))
(setq org-confirm-babel-evaluate nil)
(setq org-plantuml-jar-path "@abs_top_builddir@/doc/org/plantuml.jar")
(setq org-babel-temporary-directory "@abs_top_builddir@/doc/org/tmp")
(make-directory org-babel-temporary-directory t)
(setq org-babel-python-command "@PYTHON@")
(setq org-babel-C++-compiler "./g++wrap")
(setq shell-file-name "@SHELL@")
@ -90,3 +92,7 @@
("spot-all" :components ("spot-html" "spot-static"))))
(org-publish-all t)
;;; org-babel-remove-temporary-directory does not correctly remove
;;; nested directories and we have some files in tmp/.libs/ because of
;;; libtool. So let us clean that ourselves.
(delete-directory org-babel-temporary-directory t)