mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-08 06:38:11 +02: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,
|
sources: sources,
|
||||||
dependencies: deps,
|
dependencies: deps,
|
||||||
c_args: daemon_c_flags,
|
c_args: daemon_c_flags,
|
||||||
link_args: [
|
link_args: '-Wl,--version-script,@0@'.format(linker_script),
|
||||||
'-Wl,--version-script,@0@'.format(linker_script),
|
|
||||||
],
|
|
||||||
link_depends: linker_script,
|
link_depends: linker_script,
|
||||||
install: true,
|
install: true,
|
||||||
install_dir: nm_plugindir,
|
install_dir: nm_plugindir,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue