diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-05-10 10:25:06 +1200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-11 10:08:31 +0100 |
commit | fc14e794c53f94158a5e6d6a8644656875639d0c (patch) | |
tree | c31edd824e11e212ea82f9d6a62d1220346b0d08 /meta | |
parent | c269547ae8e90a78349f6003385137e4145e145f (diff) | |
download | openembedded-core-fc14e794c53f94158a5e6d6a8644656875639d0c.tar.gz openembedded-core-fc14e794c53f94158a5e6d6a8644656875639d0c.tar.bz2 openembedded-core-fc14e794c53f94158a5e6d6a8644656875639d0c.zip |
Drop unneeded LIC_FILES_CHKSUM values
With the changes to insane.bbclass we don't need LIC_FILES_CHKSUM to be
set for recipes that don't actually pull in any source.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/core-image.bbclass | 3 | ||||
-rw-r--r-- | meta/classes/packagegroup.bbclass | 3 | ||||
-rw-r--r-- | meta/recipes-core/meta/meta-world-pkgdata.bb | 1 | ||||
-rw-r--r-- | meta/recipes-graphics/images/core-image-directfb.bb | 4 |
4 files changed, 0 insertions, 11 deletions
diff --git a/meta/classes/core-image.bbclass b/meta/classes/core-image.bbclass index 705cad8d91..8431440db4 100644 --- a/meta/classes/core-image.bbclass +++ b/meta/classes/core-image.bbclass @@ -2,9 +2,6 @@ # # Copyright (C) 2007-2011 Linux Foundation -LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \ - file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" - # IMAGE_FEATURES control content of the core reference images # # By default we install packagegroup-core-boot and packagegroup-base-extended packages; diff --git a/meta/classes/packagegroup.bbclass b/meta/classes/packagegroup.bbclass index 3674894e7f..3928c8a4ac 100644 --- a/meta/classes/packagegroup.bbclass +++ b/meta/classes/packagegroup.bbclass @@ -15,9 +15,6 @@ PACKAGE_ARCH ?= "all" PACKAGE_ARCH_EXPANDED := "${PACKAGE_ARCH}" LICENSE ?= "MIT" -LIC_FILES_CHKSUM ?= "${@oe.utils.ifelse(d.getVar('LICENSE', True) == 'MIT', \ - 'file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420', \ - '')}" inherit ${@oe.utils.ifelse(d.getVar('PACKAGE_ARCH_EXPANDED', True) == 'all', 'allarch', '')} diff --git a/meta/recipes-core/meta/meta-world-pkgdata.bb b/meta/recipes-core/meta/meta-world-pkgdata.bb index b3989cd81e..81c8647fa6 100644 --- a/meta/recipes-core/meta/meta-world-pkgdata.bb +++ b/meta/recipes-core/meta/meta-world-pkgdata.bb @@ -1,6 +1,5 @@ SUMMARY = "Pulls in pkgdata for world" LICENSE = "MIT" -LIC_FILES_CHKSUM ?= "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" INHIBIT_DEFAULT_DEPS = "1" diff --git a/meta/recipes-graphics/images/core-image-directfb.bb b/meta/recipes-graphics/images/core-image-directfb.bb index 5641195e8c..c6ce658d61 100644 --- a/meta/recipes-graphics/images/core-image-directfb.bb +++ b/meta/recipes-graphics/images/core-image-directfb.bb @@ -1,10 +1,6 @@ SUMMARY = "An image that uses DirectFB instead of X11" LICENSE = "MIT" - -LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \ - file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" - inherit core-image distro_features_check REQUIRED_DISTRO_FEATURES = "directfb" |