summaryrefslogtreecommitdiffstats
path: root/bitbake-dev
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake-dev')
-rw-r--r--bitbake-dev/lib/bb/fetch/__init__.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/bitbake-dev/lib/bb/fetch/__init__.py b/bitbake-dev/lib/bb/fetch/__init__.py
index b58177461b..2191c284e3 100644
--- a/bitbake-dev/lib/bb/fetch/__init__.py
+++ b/bitbake-dev/lib/bb/fetch/__init__.py
@@ -351,9 +351,11 @@ class FetchData(object):
351 # if user sets localpath for file, use it instead. 351 # if user sets localpath for file, use it instead.
352 self.localpath = self.parm["localpath"] 352 self.localpath = self.parm["localpath"]
353 else: 353 else:
354 bb.fetch.srcrev_internal_call = True 354 try:
355 self.localpath = self.method.localpath(self.url, self, d) 355 bb.fetch.srcrev_internal_call = True
356 bb.fetch.srcrev_internal_call = False 356 self.localpath = self.method.localpath(self.url, self, d)
357 finally:
358 bb.fetch.srcrev_internal_call = False
357 # We have to clear data's internal caches since the cached value of SRCREV is now wrong. 359 # We have to clear data's internal caches since the cached value of SRCREV is now wrong.
358 # Horrible... 360 # Horrible...
359 bb.data.delVar("ISHOULDNEVEREXIST", d) 361 bb.data.delVar("ISHOULDNEVEREXIST", d)