diff options
| author | Michael Biebl <biebl@debian.org> | 2019-03-26 23:25:23 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2019-03-26 23:25:23 +0100 |
| commit | 9a6dcbf895f9da01768e64b73cec88c16157d91e (patch) | |
| tree | a359958930d731e9f1b59344642e10754419fe84 /src/ppp/meson.build | |
| parent | 964ae8cc391520440cf5aa13e2b9cc34850ea6c2 (diff) | |
New upstream version 1.16.0 upstream/1.16.0
Diffstat (limited to 'src/ppp/meson.build')
| -rw-r--r-- | src/ppp/meson.build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ppp/meson.build b/src/ppp/meson.build index 20ed64ed..a0f2df50 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, ) |