mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
bitbake.conf: Default DISTRO to nodistro
An empty distro value leads to OVERRIDES and FILESOVERRIDES containing "::" entries which causes odd issues such as files being included when they shouldn't be. We could put in anonymous python to guard against empty entries but its messy and setting a default value for DISTRO to something harmless is much easier. This patch adds a weak default and ensures the sanity test doesn't complain about it. DISTRO_VERSION and SDK_VERSION are also updated to match. (From OE-Core rev: b7279f99639774674da806d37d252f388f33055f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -43,8 +43,8 @@ NO32LIBS ??= "1"
|
||||
|
||||
# Default to emitting logfiles if a build fails.
|
||||
BBINCLUDELOGS ??= "yes"
|
||||
SDK_VERSION ??= "oe-core.0"
|
||||
DISTRO_VERSION ??= "oe-core.0"
|
||||
SDK_VERSION ??= "nodistro.0"
|
||||
DISTRO_VERSION ??= "nodistro.0"
|
||||
|
||||
# Missing checksums should raise an error
|
||||
BB_STRICT_CHECKSUM = "1"
|
||||
|
||||
Reference in New Issue
Block a user