buildtools: use build directory for temporary files
authorDmitry Kozlyuk <dmitry.kozliuk@gmail.com>
Mon, 25 Jan 2021 22:12:50 +0000 (01:12 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 25 Jan 2021 23:41:08 +0000 (00:41 +0100)
Use current build directory as base for temporary directories,
so that all build files are isolated there.

Fixes: e6e9730c7066 ("buildtools: support object file extraction for Windows")

Signed-off-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
buildtools/gen-pmdinfo-cfile.py
buildtools/meson.build

index c60ecd7..a4e0801 100644 (file)
@@ -7,8 +7,8 @@ import subprocess
 import sys
 import tempfile
 
-_, ar, archive, output, *pmdinfogen = sys.argv
-with tempfile.TemporaryDirectory() as temp:
+_, tmp_root, ar, archive, output, *pmdinfogen = sys.argv
+with tempfile.TemporaryDirectory(dir=tmp_root) as temp:
     proc = subprocess.run(
         # Don't use "ar p", because its output is corrupted on Windows.
         [ar, "xv", os.path.abspath(archive)], stdout=subprocess.PIPE, check=True, cwd=temp
index 0a2e91a..9c93474 100644 (file)
@@ -18,7 +18,7 @@ map_to_win_cmd = py3 + files('map_to_win.py')
 sphinx_wrapper = py3 + files('call-sphinx-build.py')
 
 # select library and object file format
-pmdinfo = py3 + files('gen-pmdinfo-cfile.py')
+pmdinfo = py3 + files('gen-pmdinfo-cfile.py') + [meson.current_build_dir()]
 pmdinfogen = py3 + files('pmdinfogen.py')
 if host_machine.system() == 'windows'
        if cc.get_id() == 'gcc'