summaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch2/local.py
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2011-02-09 14:30:29 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-10 23:55:30 +0000
commitdb2abcd6416608054d66e11e17a9f2204999750e (patch)
tree912f461fdff9b9fde17e4858862efbfcf97b98f6 /lib/bb/fetch2/local.py
parente7534cb70a9d4eee841d551fa5c1b104424add22 (diff)
downloadbitbake-db2abcd6416608054d66e11e17a9f2204999750e.tar.gz
fetch2: Correct the clean() mechanism for the fetcher2 code
This create a clean() method in each of the fetcher modules and correctly cleans the .done stamp file and lock files (From Poky rev: 14dea89521c0c648e8e543388096a6dcd6d4f2e0) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/fetch2/local.py')
-rw-r--r--lib/bb/fetch2/local.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/bb/fetch2/local.py b/lib/bb/fetch2/local.py
index d77d39375..77a296ec6 100644
--- a/lib/bb/fetch2/local.py
+++ b/lib/bb/fetch2/local.py
@@ -74,3 +74,7 @@ class Local(FetchMethod):
if os.path.exists(urldata.localpath):
return True
return False
+
+ def clean(self, urldata, d):
+ return
+