From 0317315a97b56f7bbf087ce865a9cf44b9922db5 Mon Sep 17 00:00:00 2001 From: Yoann Congal Date: Wed, 6 Nov 2024 21:18:59 +0100 Subject: bitbake: command: fix needconfig for revalidateCaches Fixes what looked like a type since parseConfiguration.needconfig is already set just after parseConfiguration() definition. (Bitbake rev: d371df029ece3b9e600a89d08337c437a8ddbf63) Signed-off-by: Yoann Congal Signed-off-by: Richard Purdie --- bitbake/lib/bb/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 1fcb9bf14c..695277f1e0 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py @@ -310,7 +310,7 @@ class CommandsSync: def revalidateCaches(self, command, params): """Called by UI clients when metadata may have changed""" command.cooker.revalidateCaches() - parseConfiguration.needconfig = False + revalidateCaches.needconfig = False def getRecipes(self, command, params): try: -- cgit v1.2.3-54-g00ecf