summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2017-07-11 14:55:42 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2017-07-11 14:57:26 -0400
commit4a108c785859e44afcb693d7b08437c602dc7a55 (patch)
tree90495f56748748c9c9fc8c9e704cdefb3478ea27 /data
parentc9766eff9dd00c7fde9efab3f51ef5cb0d18df96 (diff)
meson: Use join_paths and .set_quoted where possible
Diffstat (limited to 'data')
-rw-r--r--data/bash-completion/helpers/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/bash-completion/helpers/meson.build b/data/bash-completion/helpers/meson.build
index 0a7ed7be6..c5399bf28 100644
--- a/data/bash-completion/helpers/meson.build
+++ b/data/bash-completion/helpers/meson.build
@@ -1,6 +1,6 @@
bash_helper_conf = configuration_data()
bash_helper_conf.set('GST_COMPLETION_HELPER_INSTALLED',
- '@0@/@1@/gst-completion-helper'.format(prefix, helpers_install_dir))
+ join_paths(prefix, helpers_install_dir, 'gst-completion-helper'))
bash_helper_conf.set('GST_API_VERSION', apiversion)
configure_file(input : 'gst.in',