diff --git a/subprojects/gst-plugins-good/gst/isomp4/qtdemux_tags.c b/subprojects/gst-plugins-good/gst/isomp4/qtdemux_tags.c index 0ec9cb99cd..7500748c72 100644 --- a/subprojects/gst-plugins-good/gst/isomp4/qtdemux_tags.c +++ b/subprojects/gst-plugins-good/gst/isomp4/qtdemux_tags.c @@ -865,7 +865,8 @@ unknown_tag: namestr_dbg = g_strndup (namestr, namesize); GST_WARNING_OBJECT (demux, "This tag %s:%s type:%u is not mapped, " - "file a bug at bugzilla.gnome.org", meanstr_dbg, namestr_dbg, datatype); + "file a bug at %s", meanstr_dbg, namestr_dbg, datatype, + PACKAGE_BUGREPORT); g_free (namestr_dbg); g_free (meanstr_dbg); diff --git a/subprojects/gst-plugins-good/meson.build b/subprojects/gst-plugins-good/meson.build index a469d378e5..e6ad121371 100644 --- a/subprojects/gst-plugins-good/meson.build +++ b/subprojects/gst-plugins-good/meson.build @@ -229,6 +229,7 @@ cdata.set_quoted('GST_LICENSE', 'LGPL') cdata.set_quoted('PACKAGE', 'gst-plugins-good') cdata.set_quoted('GETTEXT_PACKAGE', 'gst-plugins-good-1.0') cdata.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir'))) +cdata.set_quoted('PACKAGE_BUGREPORT', 'https://gitlab.freedesktop.org/gstreamer/gstreamer/issues/new') warning_flags = [ '-Wmissing-declarations',