cogl-gst-plugin: Fix the license name in the plugin description

In commit 1b83ef938f the license in the plugin description was changed
from “LGPL” to “MIT”. GStreamer strictly whitelists the names of the
licenses and the correct name for the MIT license is “MIT/X11” so it
was rejecting the plugin.

Reviewed-by: Robert Bragg <robert.bragg@intel.com>
(cherry picked from commit ceec0bddb858588c1f04c50dd6cbda9eb044c4cc)
This commit is contained in:
Neil Roberts 2014-03-14 16:59:22 +00:00
parent 804082abd3
commit ed06915e61

View File

@ -52,6 +52,6 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
"Sends video data from GStreamer to a Cogl pipeline",
_plugin_init,
COGL_VERSION_STRING,
"MIT",
"MIT/X11",
PACKAGE,
"http://cogl3d.org/")