summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2021-09-15 11:38:57 +0200
committerAleksander Morgado <aleksander@aleksander.es>2021-09-15 14:24:32 +0200
commit81b6c1b33303a7b73da761b30431dbdc260d94a9 (patch)
tree85aca1dec5af6a05cf23d1050874a32de73d66c6
parent20b8d7931894a648114142e48b3a108135520a87 (diff)
downloadModemManager-81b6c1b33303a7b73da761b30431dbdc260d94a9.tar.gz
build,meson: rename plugin helpers library variable
So that we don't confuse the plugin-specific libhelpers with the core libhelpers built in src/.
-rw-r--r--plugins/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/meson.build b/plugins/meson.build
index 04719510f..7b63af444 100644
--- a/plugins/meson.build
+++ b/plugins/meson.build
@@ -916,9 +916,9 @@ if plugins_options['zte']
endif
foreach plugin_name, plugin_data: plugins
- libhelpers = []
+ libpluginhelpers = []
if plugin_data.has_key('helper')
- libhelpers = static_library(
+ libpluginhelpers = static_library(
'helpers-' + plugin_name,
dependencies: libport_dep,
kwargs: plugin_data['helper'],
@@ -936,7 +936,7 @@ foreach plugin_name, plugin_data: plugins
shared_module(
'mm-' + plugin_name,
dependencies: libhelpers_dep,
- link_with: libhelpers,
+ link_with: libpluginhelpers,
kwargs: module_args,
install: true,
install_dir: mm_pkglibdir,
@@ -947,7 +947,7 @@ foreach plugin_name, plugin_data: plugins
exe = executable(
test_unit,
- link_with: libhelpers,
+ link_with: libpluginhelpers,
kwargs: plugin_data['test'],
)