summaryrefslogtreecommitdiff
path: root/sendto
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-12-20 12:57:32 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2018-12-21 10:50:35 +0100
commitb411df34e634ccd4b5f4619e558c5ffa4736bb26 (patch)
treee6de6ef9ad5f1a9f588c3a088c092e7de42dfde0 /sendto
parentfb426b428866839b7d38421aa71e99fefc9b6261 (diff)
downloadgnome-bluetooth-b411df34e634ccd4b5f4619e558c5ffa4736bb26.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 'sendto')
-rw-r--r--sendto/meson.build10
1 files changed, 5 insertions, 5 deletions
diff --git a/sendto/meson.build b/sendto/meson.build
index fc559383..354ec7d5 100644
--- a/sendto/meson.build
+++ b/sendto/meson.build
@@ -5,17 +5,17 @@ executable(
'main.c',
include_directories: [
top_inc,
- lib_inc
+ lib_inc,
],
dependencies: gtk_dep,
link_with: libgnome_bluetooth,
install: true,
- install_dir: gnomebt_bindir
+ install_dir: gnomebt_bindir,
)
install_man(
name + '.1',
- install_dir: join_paths(gnomebt_mandir, 'man1')
+ install_dir: join_paths(gnomebt_mandir, 'man1'),
)
desktop_conf = configuration_data()
@@ -26,7 +26,7 @@ desktop = name + '.desktop'
desktop_in = configure_file(
input: desktop + '.in.in',
output: desktop + '.in',
- configuration: desktop_conf
+ configuration: desktop_conf,
)
i18n.merge_file (
@@ -36,5 +36,5 @@ i18n.merge_file (
output: desktop,
po_dir: po_dir,
install: true,
- install_dir: join_paths(gnomebt_datadir, 'applications')
+ install_dir: join_paths(gnomebt_datadir, 'applications'),
)