summaryrefslogtreecommitdiff
path: root/src/ppp
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-10-18 12:50:20 +0200
committerThomas Haller <thaller@redhat.com>2018-12-20 13:50:34 +0100
commit35171b3c3f850a9136e48d12ead389ee80842268 (patch)
treeaf3aaf34027fe82e311c5f46d8fbe7c710ed3116 /src/ppp
parentb00e004890b9c39fec4fe543bb95fdc263e774bc (diff)
downloadNetworkManager-35171b3c3f850a9136e48d12ead389ee80842268.tar.gz
build: meson: Add trailing commas
Add missing trailing commas that avoids getting noise when another file/parameter is added and eases reviewing changes[0]. [0] https://gitlab.gnome.org/GNOME/dconf/merge_requests/11#note_291585
Diffstat (limited to 'src/ppp')
-rw-r--r--src/ppp/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ppp/meson.build b/src/ppp/meson.build
index 20ed64edd5..a0f2df505f 100644
--- a/src/ppp/meson.build
+++ b/src/ppp/meson.build
@@ -2,7 +2,7 @@ name = 'nm-pppd-plugin'
deps = [
dl_dep,
- nm_core_dep
+ nm_core_dep,
]
nm_pppd_plugin = shared_module(
@@ -16,13 +16,13 @@ nm_pppd_plugin = shared_module(
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_GLIB',
],
install: true,
- install_dir: pppd_plugin_dir
+ install_dir: pppd_plugin_dir,
)
name = 'nm-ppp-plugin'
deps = [
- nm_dep
+ nm_dep,
]
linker_script = join_paths(meson.current_source_dir(), 'nm-ppp-plugin.ver')
@@ -36,5 +36,5 @@ core_plugins += shared_module(
],
link_depends: linker_script,
install: true,
- install_dir: nm_plugindir
+ install_dir: nm_plugindir,
)