summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorYoann Congal <yoann.congal@smile.fr>2024-11-06 21:18:59 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-11-07 22:17:43 +0000
commit0317315a97b56f7bbf087ce865a9cf44b9922db5 (patch)
treed1f135cf3508e7b41f1d7fdf3b728330c7a30a37 /bitbake/lib
parent43b8b3fa72d75d8d82a478613a4d9bf4645b5389 (diff)
downloadpoky-0317315a97b56f7bbf087ce865a9cf44b9922db5.tar.gz
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 <yoann.congal@smile.fr> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/command.py2
1 files changed, 1 insertions, 1 deletions
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:
310 def revalidateCaches(self, command, params): 310 def revalidateCaches(self, command, params):
311 """Called by UI clients when metadata may have changed""" 311 """Called by UI clients when metadata may have changed"""
312 command.cooker.revalidateCaches() 312 command.cooker.revalidateCaches()
313 parseConfiguration.needconfig = False 313 revalidateCaches.needconfig = False
314 314
315 def getRecipes(self, command, params): 315 def getRecipes(self, command, params):
316 try: 316 try: