From 922088e1f7ff4a0a5747369baf072cde5b6a732d Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Wed, 11 Jun 2025 14:51:12 -0400 Subject: [PATCH] build(opat-core): updated opat-core dependency to always grab subproject not system version --- build-config/opatIO/meson.build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build-config/opatIO/meson.build b/build-config/opatIO/meson.build index 6399b93..01ae467 100644 --- a/build-config/opatIO/meson.build +++ b/build-config/opatIO/meson.build @@ -1,3 +1,5 @@ -opatio_dep = dependency('opatio', fallback: ['opat-core', 'opatio_dep']) -picosha2_dep = dependency('picosha2', fallback: ['opat-core', 'picosha2_dep']) +# Get the subproject object first +opat_sub = subproject('opat-core') +# Get the dependency variable from that subproject +opatio_dep = opat_sub.get_variable('opatio_dep') \ No newline at end of file