From 76f60f47e54eae63cf0d979c9260f4aa142177b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Mart=C3=ADnez?= Date: Sat, 11 Aug 2018 14:05:42 +0200 Subject: 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. --- bin/meson.build | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/meson.build') 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 -- cgit v1.2.1