From: Alexander Kanavin Date: Mon, 16 Jun 2025 09:49:52 +0000 (+0200) Subject: bitbake.conf: set UNPACKDIR to just 'sources' and not 'sources-unpack' X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f19ea21c8ebf8ce211b14e69b27c82faf080185a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake.conf: set UNPACKDIR to just 'sources' and not 'sources-unpack' This is shorter and doesn't include the unnecessary task name, just the result of it: source trees and files. Signed-off-by: Alexander Kanavin Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 1076661b913..fff4a23dc1e 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -407,7 +407,7 @@ STAMP = "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/${PV}" STAMPCLEAN = "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/*-*" BASE_WORKDIR ?= "${TMPDIR}/work" WORKDIR = "${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}/${PN}/${PV}" -UNPACKDIR ??= "${WORKDIR}/sources-unpack" +UNPACKDIR ??= "${WORKDIR}/sources" BB_GIT_DEFAULT_DESTSUFFIX = "${BP}" T = "${WORKDIR}/temp" D = "${WORKDIR}/image"