diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/elements/meson.build | 4 |
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 |