summaryrefslogtreecommitdiff
path: root/scripts/test_build_extern.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/test_build_extern.py')
-rw-r--r--scripts/test_build_extern.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test_build_extern.py b/scripts/test_build_extern.py
index 876b1581..8a9504c9 100644
--- a/scripts/test_build_extern.py
+++ b/scripts/test_build_extern.py
@@ -98,7 +98,7 @@ with tempfile.TemporaryDirectory() as tempdir:
shutil.rmtree(temp_example_base / 'build')
try:
- subprocess.check_call(['cmake', '-B', 'build', f'-DBN_API_DIR={temp_api_base}'] + configure_args,
+ subprocess.check_call(['cmake', '-B', 'build', f'-DBN_API_PATH={temp_api_base}'] + configure_args,
cwd=temp_example_base, env=configure_env)
subprocess.check_call(['cmake', '--build', 'build'] + build_args, cwd=temp_example_base)
finally: