diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2017-07-11 14:55:42 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2017-07-11 14:57:26 -0400 |
commit | 4a108c785859e44afcb693d7b08437c602dc7a55 (patch) | |
tree | 90495f56748748c9c9fc8c9e704cdefb3478ea27 /data | |
parent | c9766eff9dd00c7fde9efab3f51ef5cb0d18df96 (diff) |
meson: Use join_paths and .set_quoted where possible
Diffstat (limited to 'data')
-rw-r--r-- | data/bash-completion/helpers/meson.build | 2 |
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', |