summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-06-19 17:23:28 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-20 13:29:53 +0100
commit7d02de844c00d55189673a6eed9197bcbc5b2720 (patch)
tree647fcd9d8ba43100c40d25c659c07c328cc2d13f /bitbake
parent3a74f25cf161679fb61dbf782a74d7913e2e77e4 (diff)
downloadpoky-7d02de844c00d55189673a6eed9197bcbc5b2720.tar.gz
bitbake: bitbake: remove the function for reparse because it does nothing
The command for reparse does nothing, so I have managed to remove it, because it can be misleading. When a reparse is needed, it can be used the parse function. (Bitbake rev: 188eaba121789112ffeb1188f0984d23dfe8df4f) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/command.py8
-rw-r--r--bitbake/lib/bb/cooker.py3
2 files changed, 0 insertions, 11 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 9dc38ec938..43dd2f4644 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -378,14 +378,6 @@ class CommandsAsync:
378 command.finishAsyncCommand() 378 command.finishAsyncCommand()
379 parseFiles.needcache = True 379 parseFiles.needcache = True
380 380
381 def reparseFiles(self, command, params):
382 """
383 Reparse .bb files
384 """
385 command.cooker.reparseFiles()
386 command.finishAsyncCommand()
387 reparseFiles.needcache = True
388
389 def compareRevisions(self, command, params): 381 def compareRevisions(self, command, params):
390 """ 382 """
391 Parse the .bb files 383 Parse the .bb files
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index f375a6f581..e304d81c5a 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1192,9 +1192,6 @@ class BBCooker:
1192 def stop(self): 1192 def stop(self):
1193 self.state = state.stop 1193 self.state = state.stop
1194 1194
1195 def reparseFiles(self):
1196 return
1197
1198 def initialize(self): 1195 def initialize(self):
1199 self.state = state.initial 1196 self.state = state.initial
1200 self.initConfigurationData() 1197 self.initConfigurationData()