mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 20:20:09 +01:00
ifcfg-rh: fix build with meson
The shared object was missing some files.
(cherry picked from commit bd556c8937)
This commit is contained in:
parent
e37e4d0fb6
commit
6220bae2d3
1 changed files with 3 additions and 3 deletions
|
|
@ -18,7 +18,7 @@ libnmdbus_ifcfg_rh = static_library(
|
|||
dependencies: glib_dep,
|
||||
)
|
||||
|
||||
sources = files(
|
||||
core_sources = files(
|
||||
'nm-inotify-helper.c',
|
||||
'nms-ifcfg-rh-reader.c',
|
||||
'nms-ifcfg-rh-utils.c',
|
||||
|
|
@ -32,11 +32,11 @@ deps = [
|
|||
|
||||
libnms_ifcfg_rh_core = static_library(
|
||||
'nms-ifcfg-rh-core',
|
||||
sources: sources,
|
||||
sources: core_sources,
|
||||
dependencies: deps,
|
||||
)
|
||||
|
||||
sources = [dbus_sources] + files('nms-ifcfg-rh-connection.c')
|
||||
sources = [dbus_sources] + core_sources + files('nms-ifcfg-rh-connection.c', 'nms-ifcfg-rh-plugin.c')
|
||||
|
||||
libnm_settings_plugin_ifcfg_rh = shared_module(
|
||||
'nm-settings-plugin-ifcfg-rh',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue