diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2017-02-08 08:12:29 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-15 09:29:56 -0800 |
commit | 4794518720fedb5c1179c9e2e20065e345194d53 (patch) | |
tree | f7bb76d73b123aa6101e80f86909b2f9e8880b2d | |
parent | 0fce3ec656199e58d9a95fdc06e745c93c6386f6 (diff) | |
download | poky-4794518720fedb5c1179c9e2e20065e345194d53.tar.gz |
classes/copyleft_filter: include AGPL in default included list
If we're including all GPL licenses then we should include AGPL in
the default COPYLEFT_LICENSE_INCLUDE since it has similar terms (and
currently we do have one AGPL-licensed recipe in OE-Core, namely db).
(Note that the default list isn't meant to be a guaranteed complete
safe list - seek legal advice based on what you're distributing if
unsure.)
(From OE-Core rev: a16fbf6970056a79cac8b70ce54e55e61ef63a8d)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/copyleft_filter.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/copyleft_filter.bbclass b/meta/classes/copyleft_filter.bbclass index 426956f08f..5867bb9f7e 100644 --- a/meta/classes/copyleft_filter.bbclass +++ b/meta/classes/copyleft_filter.bbclass | |||
@@ -6,7 +6,7 @@ | |||
6 | # | 6 | # |
7 | # vi:sts=4:sw=4:et | 7 | # vi:sts=4:sw=4:et |
8 | 8 | ||
9 | COPYLEFT_LICENSE_INCLUDE ?= 'GPL* LGPL*' | 9 | COPYLEFT_LICENSE_INCLUDE ?= 'GPL* LGPL* AGPL*' |
10 | COPYLEFT_LICENSE_INCLUDE[type] = 'list' | 10 | COPYLEFT_LICENSE_INCLUDE[type] = 'list' |
11 | COPYLEFT_LICENSE_INCLUDE[doc] = 'Space separated list of globs which include licenses' | 11 | COPYLEFT_LICENSE_INCLUDE[doc] = 'Space separated list of globs which include licenses' |
12 | 12 | ||