diff options
author | 2020-09-26 15:52:34 +0200 | |
---|---|---|
committer | 2020-09-26 15:54:39 +0200 | |
commit | 4626bafe5ccd91fdcc84f2413ad23404942672f4 (patch) | |
tree | bac4446473e9952b35786480a6bd1cb1784382f1 | |
parent | 6ce47bbaaf52a452b9482e1f907ae4744fa08e72 (diff) | |
download | buildroot-4626bafe5ccd91fdcc84f2413ad23404942672f4.tar.gz buildroot-4626bafe5ccd91fdcc84f2413ad23404942672f4.tar.bz2 |
package/gstreamer1/gst1-plugins-ugly: add missing comma in license variable
When one GPL-licensed plugin was enabled, the license of
gst1-plugins-ugly would be "LGPL-2.1+ GPL-2.0", but licenses should be
comma separated, not space separated. So let's fix that to get the
expected value of "LGPL-2.1+, GPL-2.0".
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk b/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk index 2072772d9a..db6a09ddca 100644 --- a/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk +++ b/package/gstreamer1/gst1-plugins-ugly/gst1-plugins-ugly.mk @@ -90,7 +90,7 @@ endif # Add GPL license if GPL plugins enabled. ifeq ($(GST1_PLUGINS_UGLY_HAS_GPL_LICENSE),y) -GST1_PLUGINS_UGLY_LICENSE += GPL-2.0 +GST1_PLUGINS_UGLY_LICENSE += , GPL-2.0 endif # Use the following command to extract license info for plugins. |