summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-10 17:26:28 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-11 13:22:01 +0100
commitd7ce7d67994f02367750d03e9e97ebdf89cd7a33 (patch)
tree8d0bbf881234eea67b2ccdd3c76f09e1221978cd /meta/conf/bitbake.conf
parentc4e6a67a8aea01e25d372f209b4214d41bb293da (diff)
downloadpoky-d7ce7d67994f02367750d03e9e97ebdf89cd7a33.tar.gz
bitbake.conf: Drop PE and PR from WORKDIR and STAMP
Once, we relied upon stamps changing to rebuild. PE and PR are packaging variables and are reflected in the taskhashes when/where they're used so they do not need to be in STAMP. Similarly, once, multiple versions were something which was useful in WORKDIR but this is really just noise causing long pathnames now. Drop PR and PE from these variables to clean up the paths a bit. This may break some tool assumptions about paths but those are probably things we need to fix. (From OE-Core rev: cc83e45484656a6b577ff84817131735023daad4) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 475d6523bb..599bbc4ba8 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -402,10 +402,10 @@ PERSISTENT_DIR = "${TOPDIR}/cache"
402LOG_DIR = "${TMPDIR}/log" 402LOG_DIR = "${TMPDIR}/log"
403 403
404STAMPS_DIR ?= "${TMPDIR}/stamps" 404STAMPS_DIR ?= "${TMPDIR}/stamps"
405STAMP = "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/${EXTENDPE}${PV}-${PR}" 405STAMP = "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/${PV}"
406STAMPCLEAN = "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/*-*" 406STAMPCLEAN = "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/*-*"
407BASE_WORKDIR ?= "${TMPDIR}/work" 407BASE_WORKDIR ?= "${TMPDIR}/work"
408WORKDIR = "${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}/${PN}/${EXTENDPE}${PV}-${PR}" 408WORKDIR = "${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}/${PN}/${PV}"
409T = "${WORKDIR}/temp" 409T = "${WORKDIR}/temp"
410D = "${WORKDIR}/image" 410D = "${WORKDIR}/image"
411S = "${WORKDIR}/${BP}" 411S = "${WORKDIR}/${BP}"