summaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorCharles Brunet <charles.brunet@optelgroup.com>2024-03-06 14:10:08 -0500
committerDylan Baker <dylan@pnwbakers.com>2024-03-10 13:09:32 -0700
commitf9479787a01106235e14d2a08a74352f4b1177ef (patch)
treed46c28c64c07d8d11322e95ec0404cf8282b7088 /run_project_tests.py
parent9e270f030f3016be2a419b698b8062e5ed5373b8 (diff)
downloadmeson-f9479787a01106235e14d2a08a74352f4b1177ef.tar.gz
fix reconfigure subproject base options
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 6fc9cb7f7..a14741364 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -981,7 +981,7 @@ def have_working_compiler(lang: str, use_tmp: bool) -> bool:
return False
if not compiler:
return False
- env.coredata.process_compiler_options(lang, compiler, env)
+ env.coredata.process_compiler_options(lang, compiler, env, '')
try:
compiler.sanity_check(env.get_scratch_dir(), env)
except mesonlib.MesonException: