mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 00:10:07 +01:00
meson: Avoid the use of unnecessary array
The linker flags used when building `libnm_wwan` target uses an array even when it only uses one value. When using only one value the array is unnecessary so it has been removed.
This commit is contained in:
parent
dababfa59e
commit
c4dc02c9bd
1 changed files with 1 additions and 3 deletions
|
|
@ -22,9 +22,7 @@ libnm_wwan = shared_module(
|
|||
sources: sources,
|
||||
dependencies: deps,
|
||||
c_args: daemon_c_flags,
|
||||
link_args: [
|
||||
'-Wl,--version-script,@0@'.format(linker_script),
|
||||
],
|
||||
link_args: '-Wl,--version-script,@0@'.format(linker_script),
|
||||
link_depends: linker_script,
|
||||
install: true,
|
||||
install_dir: nm_plugindir,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue