From 70084bd48d09295141d2240cff4a3f5005d7edff Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Thu, 29 Mar 2018 00:43:22 +1300 Subject: rrs/tools: ensure recipe parsing code deletes temporary dir load_recipes() was leaving files around in /tmp; on my Fedora system this eventually resulted in /tmp running out of space which we do not want. Signed-off-by: Paul Eggleton --- rrs/tools/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rrs/tools/common.py') diff --git a/rrs/tools/common.py b/rrs/tools/common.py index d4ceb7156b..df7ecf941c 100644 --- a/rrs/tools/common.py +++ b/rrs/tools/common.py @@ -121,7 +121,7 @@ def load_recipes(layerbranch, bitbakepath, fetchdir, settings, logger, % (layerbranch, fn, str(e))) continue - return (tinfoil, d, recipes) + return (tinfoil, d, recipes, tempdir) # XXX: Copied from oe-core recipeutils to avoid import errors. def get_recipe_pv_without_srcpv(pv, uri_type): -- cgit 1.2.3-korg