summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-12-17 15:48:39 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2019-01-04 16:33:53 +0100
commitf4ee93b06cfc4d9f727f9174e40d08097a25d571 (patch)
tree6dd68ea2ec3540a8a835c3f479373273995130e9 /client
parentc25bc351bb2605e57bc9a6d9250c9d4748c3d9e0 (diff)
downloadgvfs-f4ee93b06cfc4d9f727f9174e40d08097a25d571.tar.gz
build: 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 'client')
-rw-r--r--client/meson.build22
1 files changed, 11 insertions, 11 deletions
diff --git a/client/meson.build b/client/meson.build
index 3bc4681f..b2d13597 100644
--- a/client/meson.build
+++ b/client/meson.build
@@ -1,18 +1,18 @@
headers = files(
'gvfsurimapper.h',
- 'gvfsuriutils.h'
+ 'gvfsuriutils.h',
)
install_headers(
headers,
- subdir: join_paths('gvfs-client', 'gvfs')
+ subdir: join_paths('gvfs-client', 'gvfs'),
)
# Dynamic client lib
uri_parser_sources = files(
'afpuri.c',
'httpuri.c',
- 'smburi.c'
+ 'smburi.c',
)
uri_utils = files('gvfsuriutils.c')
@@ -28,19 +28,19 @@ sources = uri_parser_sources + uri_utils + files(
'gdaemonvolumemonitor.c',
'gvfsdaemondbus.c',
'gvfsiconloadable.c',
- 'gvfsurimapper.c'
+ 'gvfsurimapper.c',
)
deps = [
gio_unix_dep,
libgvfscommon_dep,
- libmetadata_dep
+ libmetadata_dep,
]
cflags = [
'-DG_LOG_DOMAIN="@0@"'.format(gvfs_name.to_upper()),
'-DGVFS_LOCALEDIR="@0@"'.format(gvfs_localedir),
- '-DGVFS_MODULE_DIR="@0@"'.format(join_paths(gvfs_libdir, 'gvfs', 'modules'))
+ '-DGVFS_MODULE_DIR="@0@"'.format(join_paths(gvfs_libdir, 'gvfs', 'modules')),
]
symbol_map = join_paths(meson.current_source_dir(), 'symbol.map')
@@ -60,7 +60,7 @@ libgvfsdbus = shared_module(
link_depends: symbol_map,
install: true,
install_rpath: gvfs_rpath,
- install_dir: gio_module_dir
+ install_dir: gio_module_dir,
)
if enable_devel_utils
@@ -71,7 +71,7 @@ if enable_devel_utils
[test_name + '.c'] + uri_utils,
include_directories: top_inc,
dependencies: libgvfscommon_dep,
- c_args: cflags
+ c_args: cflags,
)
endif
@@ -80,13 +80,13 @@ if enable_fuse
if install_tmp_files_dir
install_data(
'gvfsd-fuse-tmpfiles.conf',
- install_dir: tmp_files_dir
+ install_dir: tmp_files_dir,
)
endif
deps = [
fuse_dep,
- libgvfscommon_dep
+ libgvfscommon_dep,
]
executable(
@@ -97,6 +97,6 @@ if enable_fuse
c_args: cflags + ['-UG_LOG_DOMAIN'],
install: true,
install_rpath: gvfs_rpath,
- install_dir: gvfs_libexecdir
+ install_dir: gvfs_libexecdir,
)
endif