summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/command.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 83907f6cc3..5dec6a9d09 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -241,7 +241,7 @@ class CommandsAsync:
241 241
242 command.cooker.findConfigFiles(varname) 242 command.cooker.findConfigFiles(varname)
243 command.finishAsyncCommand() 243 command.finishAsyncCommand()
244 findConfigFiles.needcache = True 244 findConfigFiles.needcache = False
245 245
246 def findFilesMatchingInDir(self, command, params): 246 def findFilesMatchingInDir(self, command, params):
247 """ 247 """
@@ -253,7 +253,7 @@ class CommandsAsync:
253 253
254 command.cooker.findFilesMatchingInDir(pattern, directory) 254 command.cooker.findFilesMatchingInDir(pattern, directory)
255 command.finishAsyncCommand() 255 command.finishAsyncCommand()
256 findFilesMatchingInDir.needcache = True 256 findFilesMatchingInDir.needcache = False
257 257
258 def findConfigFilePath(self, command, params): 258 def findConfigFilePath(self, command, params):
259 """ 259 """