diff options
Diffstat (limited to 'meta/classes/packagegroup.bbclass')
-rw-r--r-- | meta/classes/packagegroup.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/packagegroup.bbclass b/meta/classes/packagegroup.bbclass index 38bdbd3822..3674894e7f 100644 --- a/meta/classes/packagegroup.bbclass +++ b/meta/classes/packagegroup.bbclass | |||
@@ -14,6 +14,11 @@ PACKAGE_ARCH ?= "all" | |||
14 | # Fully expanded - so it applies the overrides as well | 14 | # Fully expanded - so it applies the overrides as well |
15 | PACKAGE_ARCH_EXPANDED := "${PACKAGE_ARCH}" | 15 | PACKAGE_ARCH_EXPANDED := "${PACKAGE_ARCH}" |
16 | 16 | ||
17 | LICENSE ?= "MIT" | ||
18 | LIC_FILES_CHKSUM ?= "${@oe.utils.ifelse(d.getVar('LICENSE', True) == 'MIT', \ | ||
19 | 'file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420', \ | ||
20 | '')}" | ||
21 | |||
17 | inherit ${@oe.utils.ifelse(d.getVar('PACKAGE_ARCH_EXPANDED', True) == 'all', 'allarch', '')} | 22 | inherit ${@oe.utils.ifelse(d.getVar('PACKAGE_ARCH_EXPANDED', True) == 'all', 'allarch', '')} |
18 | 23 | ||
19 | # This automatically adds -dbg and -dev flavours of all PACKAGES | 24 | # This automatically adds -dbg and -dev flavours of all PACKAGES |