summaryrefslogtreecommitdiff
path: root/cogl-gst
diff options
context:
space:
mode:
authorNeil Roberts <neil@linux.intel.com>2014-03-14 16:59:22 +0000
committerNeil Roberts <neil@linux.intel.com>2014-03-20 17:44:38 +0000
commited06915e61ac20ed3297aca83c210a12f9575d6f (patch)
treebab0b8af1babd2eac7eb9f4cbb04f0f8016c5e89 /cogl-gst
parent804082abd3f76cb724d09804cbcd7d8fc4dff769 (diff)
downloadcogl-ed06915e61ac20ed3297aca83c210a12f9575d6f.tar.gz
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)
Diffstat (limited to 'cogl-gst')
-rw-r--r--cogl-gst/cogl-gst-plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cogl-gst/cogl-gst-plugin.c b/cogl-gst/cogl-gst-plugin.c
index d72805ad..20b1e59a 100644
--- a/cogl-gst/cogl-gst-plugin.c
+++ b/cogl-gst/cogl-gst-plugin.c
@@ -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/")