diff options
| author | Sebastien Bacher <seb128@ubuntu.com> | 2020-08-31 11:08:28 +0200 |
|---|---|---|
| committer | Sebastien Bacher <seb128@ubuntu.com> | 2020-08-31 11:08:28 +0200 |
| commit | b51f06ff71a2060925bf3c0f04c44bd12480e670 (patch) | |
| tree | fd305682823aff144f345fd1d439fa78f3d51a0a /src/meson.build | |
| parent | b92fc658301eb82b80167a31179c9b839f151b18 (diff) | |
| parent | e7b44ef4c80907346ec7492a09c45277459924fc (diff) | |
Merge branch 'upstream/latest' of https://salsa.debian.org/utopia-team/network-manager into upstream/latest
Diffstat (limited to 'src/meson.build')
| -rw-r--r-- | src/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/meson.build b/src/meson.build index 8ff9bd11..07bb1a52 100644 --- a/src/meson.build +++ b/src/meson.build @@ -264,8 +264,8 @@ symbol_map_name = 'NetworkManager.ver' # add dependencies with link_whole, only supported in meson >= 0.46. # Create an executable with full symbols that we use in place of the # library to enumerate the symbols. -network_manager_sym = executable( - 'nm-full-symbols', +network_manager_all_sym = executable( + 'NetworkManager-all-sym', 'main.c', dependencies: nm_deps, c_args: daemon_c_flags, @@ -277,7 +277,7 @@ network_manager_sym = executable( ver_script = custom_target( symbol_map_name, output: symbol_map_name, - depends: [network_manager_sym, core_plugins], + depends: [network_manager_all_sym, core_plugins], command: [create_exports_networkmanager, '--called-from-build', source_root], ) |