diff options
author | 2021-02-19 00:07:21 +0000 | |
---|---|---|
committer | 2021-02-19 00:07:23 +0000 | |
commit | dad965cdd181844948db1da9b0d48f0e93983ed1 (patch) | |
tree | 4315342e46d2b4966969165371945a62ef084032 | |
parent | 453c4ab9cd4a20c19726ddd1bb1ace723a705285 (diff) | |
download | meta-gplv2-dad965cdd181844948db1da9b0d48f0e93983ed1.tar.gz meta-gplv2-dad965cdd181844948db1da9b0d48f0e93983ed1.tar.bz2 meta-gplv2-dad965cdd181844948db1da9b0d48f0e93983ed1.zip |
disable-gplv3.inc: Update pattern match to what we really mean
This code wants to disable GPLv3 and GPLv3+ however the pattern
didnt specify that and with recent changes in OE-Core, it needs
to be specific. Update the pattern to be specific.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | conf/distro/include/disable-gplv3.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/distro/include/disable-gplv3.inc b/conf/distro/include/disable-gplv3.inc index 761be7d..bded378 100644 --- a/conf/distro/include/disable-gplv3.inc +++ b/conf/distro/include/disable-gplv3.inc @@ -1,3 +1,3 @@ -INCOMPATIBLE_LICENSE = '*GPLv3' +INCOMPATIBLE_LICENSE = '*GPLv3*' WARN_QA_remove = 'incompatible-license' RDEPENDS_${PN}-ptest_remove_pn-glib-2.0 = "python3-dbusmock" |