summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2022-02-03 14:51:30 -0500
committerGlenn Smith <glenn@vector35.com>2022-02-03 14:51:30 -0500
commit83d7a7800ac4a970d618ad125cdbb18e3b29b53e (patch)
treecd7c2437595503bcad3b685f0e48c846664870dc /scripts
parenta795bb3d088f6fe88451445d123abc107ad1f96c (diff)
CMake: consistency with arch/platform plugins
Diffstat (limited to 'scripts')
-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: