summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/packagegroup.bbclass5
-rw-r--r--meta/conf/bitbake.conf2
2 files changed, 6 insertions, 1 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
15PACKAGE_ARCH_EXPANDED := "${PACKAGE_ARCH}" 15PACKAGE_ARCH_EXPANDED := "${PACKAGE_ARCH}"
16 16
17LICENSE ?= "MIT"
18LIC_FILES_CHKSUM ?= "${@oe.utils.ifelse(d.getVar('LICENSE', True) == 'MIT', \
19 'file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420', \
20 '')}"
21
17inherit ${@oe.utils.ifelse(d.getVar('PACKAGE_ARCH_EXPANDED', True) == 'all', 'allarch', '')} 22inherit ${@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
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 40796aab14..66646c82fb 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -247,7 +247,7 @@ SUMMARY_${PN}-doc ?= "${SUMMARY} - Documentation files"
247DESCRIPTION_${PN}-doc ?= "${DESCRIPTION} \ 247DESCRIPTION_${PN}-doc ?= "${DESCRIPTION} \
248This package contains documentation." 248This package contains documentation."
249 249
250LICENSE = "INVALID" 250LICENSE ??= "INVALID"
251MAINTAINER = "OE-Core Developers <openembedded-core@lists.openembedded.org>" 251MAINTAINER = "OE-Core Developers <openembedded-core@lists.openembedded.org>"
252HOMEPAGE = "" 252HOMEPAGE = ""
253 253