From e560b551ae6ab6f5f4bc884fcb0ae43353e055fb Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 24 Feb 2021 14:17:24 +0100 Subject: [PATCH] build/meson: remove unnecessary libnm_core_intern_dep --- src/core/devices/bluetooth/meson.build | 1 - src/core/meson.build | 2 -- src/libnm-core-impl/meson.build | 1 - src/libnm-core-impl/tests/meson.build | 1 - src/libnm-core-intern/meson.build | 7 ------- 5 files changed, 12 deletions(-) diff --git a/src/core/devices/bluetooth/meson.build b/src/core/devices/bluetooth/meson.build index 32168b0c2b..5b196d08d9 100644 --- a/src/core/devices/bluetooth/meson.build +++ b/src/core/devices/bluetooth/meson.build @@ -9,7 +9,6 @@ libnm_device_plugin_bluetooth_static = static_library( ) + (enable_bluez5_dun ? files('nm-bluez5-dun.c') : files()), dependencies: [ libnm_core_public_dep, - libnm_core_intern_dep, core_default_dep, libnm_wwan_dep, bluez5_dep, diff --git a/src/core/meson.build b/src/core/meson.build index 28d163496f..68686c2962 100644 --- a/src/core/meson.build +++ b/src/core/meson.build @@ -9,7 +9,6 @@ core_plugin_dep = declare_dependency( libnm_core_public_inc, ], dependencies: [ - libnm_core_intern_dep, libnm_core_public_dep, glib_dep, ], @@ -23,7 +22,6 @@ core_default_dep = declare_dependency( ], dependencies: [ libnm_core_public_dep, - libnm_core_intern_dep, ], ) diff --git a/src/libnm-core-impl/meson.build b/src/libnm-core-impl/meson.build index 98f86ed393..b9ba81f664 100644 --- a/src/libnm-core-impl/meson.build +++ b/src/libnm-core-impl/meson.build @@ -110,7 +110,6 @@ libnm_core_impl = static_library( dependencies: [ dl_dep, libnm_core_public_dep, - libnm_core_intern_dep, uuid_dep, ], link_with: [ diff --git a/src/libnm-core-impl/tests/meson.build b/src/libnm-core-impl/tests/meson.build index caf7aeca17..449a690697 100644 --- a/src/libnm-core-impl/tests/meson.build +++ b/src/libnm-core-impl/tests/meson.build @@ -26,7 +26,6 @@ foreach test_unit: test_units ], dependencies: [ libnm_core_public_dep, - libnm_core_intern_dep, libnm_core_impl_dep_link, ], link_with: [ diff --git a/src/libnm-core-intern/meson.build b/src/libnm-core-intern/meson.build index 0373452c20..841a0aebb7 100644 --- a/src/libnm-core-intern/meson.build +++ b/src/libnm-core-intern/meson.build @@ -1,10 +1,3 @@ # SPDX-License-Identifier: LGPL-2.1-or-later libnm_core_intern_inc = include_directories('.') - -libnm_core_intern_dep = declare_dependency( - dependencies: [ - libnm_core_public_dep, - glib_dep, - ], -)