From: Michael Olbrich Date: Sat, 11 May 2019 16:21:19 +0000 (+0200) Subject: meson: set correct install path for gdb helper X-Git-Tag: 1.19.3~1216 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0364f74643495d4174f40443ccd65725fb5333f3;p=platform%2Fupstream%2Fgstreamer.git meson: set correct install path for gdb helper The original version of the patch used glib-2.0 but that was later changed to gstreamer-1.0 for autotools. The meson file was forgotten. Fix the path to match the one used in libgstreamer-gdb.py.in. --- diff --git a/libs/gst/helpers/meson.build b/libs/gst/helpers/meson.build index 0f11954..f706ab0 100644 --- a/libs/gst/helpers/meson.build +++ b/libs/gst/helpers/meson.build @@ -120,7 +120,7 @@ if have_ptp endif install_data(['gst_gdb.py', 'glib_gobject_helper.py'], - install_dir : join_paths(get_option('datadir'), 'glib-2.0', 'gdb')) + install_dir : join_paths(get_option('datadir'), 'gstreamer-@0@'.format(apiversion), 'gdb')) gdbconf = configuration_data() gdbconf.set('GST_API_VERSION', apiversion)