diff options
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index fe33a4f34c..0ad79bd53e 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -2241,9 +2241,9 @@ class CookerParser(object): | |||
2241 | profiles.append(logfile) | 2241 | profiles.append(logfile) |
2242 | 2242 | ||
2243 | if profiles: | 2243 | if profiles: |
2244 | pout = "profile-parse.log.processed" | 2244 | fn_out = "profile-parse.log.report" |
2245 | bb.utils.process_profilelog(profiles, pout = pout) | 2245 | bb.utils.process_profilelog(profiles, fn_out=fn_out) |
2246 | print("Processed parsing statistics saved to %s" % (pout)) | 2246 | print("Processed parsing statistics saved to %s" % (fn_out)) |
2247 | 2247 | ||
2248 | def final_cleanup(self): | 2248 | def final_cleanup(self): |
2249 | if self.syncthread: | 2249 | if self.syncthread: |