summaryrefslogtreecommitdiff
path: root/sendto
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-12-20 15:32:38 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2019-01-11 12:06:01 +0100
commitd88cd6afd1b99c3555356412c802e33544793ff4 (patch)
tree0642e391cc0d0d3d1a14f244130bffef4ed3fc33 /sendto
parent9b6fcc3f59ad0be53faabb8c84fefaf24dacc475 (diff)
downloadgnome-bluetooth-d88cd6afd1b99c3555356412c802e33544793ff4.tar.gz
build: Use / instead of join_paths
Since meson 0.49, the `/` character can be used to join paths[0], so all the instances of `join_paths` have been replaced. Required meson version has been bumped to 0.49. [0] http://mesonbuild.com/Release-notes-for-0-49-0.html#joining-paths-with-
Diffstat (limited to 'sendto')
-rw-r--r--sendto/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/sendto/meson.build b/sendto/meson.build
index 0754fd0d..f0e8ad8f 100644
--- a/sendto/meson.build
+++ b/sendto/meson.build
@@ -32,5 +32,5 @@ i18n.merge_file (
output: desktop,
po_dir: po_dir,
install: true,
- install_dir: join_paths(gnomebt_datadir, 'applications'),
+ install_dir: gnomebt_datadir / 'applications',
)