mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
There were paths being accidentally included in some of the hashserv tests. Remove that and update the hashes so the tests work independently of paths. (Bitbake rev: 6ddb9f09cb60c2354fa6a67cce412c4dc1e7dc2d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
577 B
Plaintext
17 lines
577 B
Plaintext
CACHE = "${TOPDIR}/cache"
|
|
THISDIR = "${@os.path.dirname(d.getVar('FILE'))}"
|
|
COREBASE := "${@os.path.normpath(os.path.dirname(d.getVar('FILE')+'/../../'))}"
|
|
BBFILES = "${COREBASE}/recipes/*.bb"
|
|
PROVIDES = "${PN}"
|
|
PN = "${@bb.parse.vars_from_file(d.getVar('FILE', False),d)[0]}"
|
|
PF = "${BB_CURRENT_MC}:${PN}"
|
|
export PATH
|
|
TMPDIR ??= "${TOPDIR}"
|
|
STAMP = "${TMPDIR}/stamps/${PN}"
|
|
T = "${TMPDIR}/workdir/${PN}/temp"
|
|
BB_NUMBER_THREADS = "4"
|
|
|
|
BB_HASHBASE_WHITELIST = "BB_CURRENT_MC BB_HASHSERVE TMPDIR TOPDIR SLOWTASKS SSTATEVALID FILE"
|
|
|
|
include conf/multiconfig/${BB_CURRENT_MC}.conf
|