From 27f5f0a9633b310f537f09ba0fdd79d86fcb962a Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sat, 25 Mar 2017 08:07:46 +0530 Subject: Export MESONINTROSPECT to postconf/install/run_command scripts Points to the `mesonintrospect.py` script corresponding to the currently-running version of Meson. Includes a test for all three methods of running scripts/commands. Closes https://github.com/mesonbuild/meson/issues/1385 --- mesonbuild/mesonlib.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'mesonbuild/mesonlib.py') diff --git a/mesonbuild/mesonlib.py b/mesonbuild/mesonlib.py index c7368d5..345a184 100644 --- a/mesonbuild/mesonlib.py +++ b/mesonbuild/mesonlib.py @@ -173,6 +173,15 @@ class File: def relative_name(self): return os.path.join(self.subdir, self.fname) +def get_meson_script(env, script): + ''' + Given the path of `meson.py`/`meson`, get the path of a meson script such + as `mesonintrospect` or `mesontest`. + ''' + meson_py = env.get_build_command() + (base, ext) = os.path.splitext(meson_py) + return os.path.join(os.path.dirname(base), script + ext) + def get_compiler_for_source(compilers, src): for comp in compilers: if comp.can_compile(src): -- cgit v1.1