diff options
Diffstat (limited to 'mesonbuild/scripts/meson_test.py')
-rwxr-xr-x | mesonbuild/scripts/meson_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/scripts/meson_test.py b/mesonbuild/scripts/meson_test.py index 7d4d7e3..8034815 100755 --- a/mesonbuild/scripts/meson_test.py +++ b/mesonbuild/scripts/meson_test.py @@ -134,7 +134,8 @@ def run_single_test(wrap, test): child_env.update(test.env) if len(test.extra_paths) > 0: - child_env['PATH'] = child_env['PATH'] + ';'.join([''] + test.extra_paths) + child_env['PATH'] = (child_env['PATH'] + + os.pathsep.join([''] + test.extra_paths)) if is_windows(): setsid = None else: |