From 7234f33a7eb38ad51a8345f6689bc26e29f29f92 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 1 Sep 2017 16:21:49 +0100 Subject: cooker: Ensure parseConfiguration clears parsecache_valid BB_SERVER_TIMEOUT=100 oe-selftest -r bblayers was failing and highlighted that since parseConfiguation clears data structures, it needs to also clear parsecache_valid as it no longer contains correct data. Signed-off-by: Richard Purdie --- lib/bb/cooker.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py index ab3de91da..f5ae831c4 100644 --- a/lib/bb/cooker.py +++ b/lib/bb/cooker.py @@ -418,6 +418,8 @@ class BBCooker: self.handleCollections(self.data.getVar("BBFILE_COLLECTIONS")) + self.parsecache_valid = False + def updateConfigOpts(self, options, environment, cmdline): self.ui_cmdline = cmdline clean = True -- cgit 1.2.3-korg