From: Richard Purdie Date: Fri, 27 Jun 2025 09:26:20 +0000 (+0100) Subject: base: Use OE_SHARED_UMASK for do_fetch X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=00e9bfbd29f3959adfc2c64ec78285a11ff83821;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git base: Use OE_SHARED_UMASK for do_fetch The intent has always been to share DL_DIR, so set the umask accordingly to the new OE_SHARED_UMASK variable and match expectations. Signed-off-by: Richard Purdie --- diff --git a/meta/classes-global/base.bbclass b/meta/classes-global/base.bbclass index b86f50e2839..ac145d9fd64 100644 --- a/meta/classes-global/base.bbclass +++ b/meta/classes-global/base.bbclass @@ -154,6 +154,7 @@ do_fetch[file-checksums] = "${@bb.fetch.get_checksum_file_list(d)}" do_fetch[file-checksums] += " ${@get_lic_checksum_file_list(d)}" do_fetch[prefuncs] += "fetcher_hashes_dummyfunc" do_fetch[network] = "1" +do_fetch[umask] = "${OE_SHARED_UMASK}" python base_do_fetch() { src_uri = (d.getVar('SRC_URI') or "").split()