From: Stefan Agner Date: Fri, 11 Oct 2019 09:06:59 +0000 (+0200) Subject: uninative: check .done file instead of tarball X-Git-Tag: 2019-10.1-zeus~93 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=956ae2c2a72914c7e9a1d59e5906c7fc75670a39;p=openembedded-core.git uninative: check .done file instead of tarball In case multiple builds share UNINATIVE_DLDIR's location, one build might be in the process of downloading the tarball while another is just checking whether the tarball exists. Check for the done file instead and rely on the fetchers lockfile mechanism in case two builds are running. Signed-off-by: Stefan Agner Signed-off-by: Richard Purdie (cherry picked from commit a1c95580549cb4f77601e62c7f026b19c752d853) Signed-off-by: Armin Kuster --- diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass index 3326c0db3d..9f8645a36a 100644 --- a/meta/classes/uninative.bbclass +++ b/meta/classes/uninative.bbclass @@ -45,7 +45,7 @@ python uninative_event_fetchloader() { tarballdir = os.path.join(d.getVar("UNINATIVE_DLDIR"), chksum) tarballpath = os.path.join(tarballdir, tarball) - if not os.path.exists(tarballpath): + if not os.path.exists(tarballpath + ".done"): bb.utils.mkdirhier(tarballdir) if d.getVar("UNINATIVE_URL") == "unset": bb.fatal("Uninative selected but not configured, please set UNINATIVE_URL")