summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-08-11 14:05:42 +0200
committerIñigo Martínez <inigomartinez@gmail.com>2018-08-11 22:57:34 +0200
commit76f60f47e54eae63cf0d979c9260f4aa142177b1 (patch)
treed05e6e76321f38ae31dc64349b76614534bbdd8f /bin
parent11085f91c24dd895dfd1e9d02a71f1a3346e3c00 (diff)
downloaddconf-76f60f47e54eae63cf0d979c9260f4aa142177b1.tar.gz
build: Add trailing commas where necessary
Having trailing commas in place means that if another source file or parameter is added to the end of the list or function, there won't be noise when adding the comma to the line above.
Diffstat (limited to 'bin')
-rw-r--r--bin/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/meson.build b/bin/meson.build
index bb6a5d5..5c6e6bc 100644
--- a/bin/meson.build
+++ b/bin/meson.build
@@ -2,13 +2,13 @@ sources = gvdb_builder + libdconf_vapi + files(
'dconf-dump.vala',
'dconf-update.vala',
'dconf.vala',
- 'gvdb.vapi'
+ 'gvdb.vapi',
)
deps = [
libdconf_common_dep,
libdconf_dep,
- valac.find_library('posix')
+ valac.find_library('posix'),
]
executable(
@@ -16,12 +16,12 @@ executable(
sources,
include_directories: top_inc,
dependencies: deps,
- install: true
+ install: true,
)
if enable_bash_completion
install_data(
'completion/dconf',
- install_dir: completions_dir
+ install_dir: completions_dir,
)
endif