summaryrefslogtreecommitdiff
path: root/plugins
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 /plugins
parentc9766eff9dd00c7fde9efab3f51ef5cb0d18df96 (diff)
meson: Use join_paths and .set_quoted where possible
Diffstat (limited to 'plugins')
-rw-r--r--plugins/elements/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/elements/meson.build b/plugins/elements/meson.build
index abb2e2669..3518fcc5f 100644
--- a/plugins/elements/meson.build
+++ b/plugins/elements/meson.build
@@ -32,7 +32,7 @@ if libtype != 'shared'
include_directories : [configinc],
dependencies : [gobject_dep, glib_dep, gst_dep, gst_base_dep],
install : true,
- install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')),
+ install_dir : join_paths(get_option('libdir'), 'gstreamer-1.0'),
)
gst_elements = gst_elements_static
endif
@@ -44,7 +44,7 @@ if libtype != 'static'
include_directories : [configinc],
dependencies : [gobject_dep, glib_dep, gst_dep, gst_base_dep],
install : true,
- install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')),
+ install_dir : join_paths(get_option('libdir'), 'gstreamer-1.0'),
)
gst_elements = gst_elements_shared
endif