mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
bitbake.conf: Set vardepvalue for PARALLEL_MAKEINST
If you leave PARALLEL_MAKEINST at its default from PARALLEL_MAKE, sstate checksums are fine and don't change as the number of cores do. If you override it to a specific value, this does the cause the sstate checksums to change. We don't want the checksums to change if the value of this variable differs. Therefore set a vardepvalue so a specific value is used for checksum purposes. (From OE-Core rev: 0a20d7f462b42800a8420dbb57e6ac8b84770b39) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -604,6 +604,7 @@ LINKER_HASH_STYLE:mipsarch:libc-musl = "sysv"
|
||||
# Pass parallel make options to the compile task
|
||||
EXTRA_OEMAKE:prepend:task-compile = "${PARALLEL_MAKE} "
|
||||
PARALLEL_MAKEINST ??= "${PARALLEL_MAKE}"
|
||||
PARALLEL_MAKEINST[vardepvalue] = "1"
|
||||
# Pass parallel make options to the install task
|
||||
EXTRA_OEMAKE:prepend:task-install = "${PARALLEL_MAKEINST} "
|
||||
|
||||
|
||||
Reference in New Issue
Block a user