diff options
-rw-r--r-- | bitbake/lib/bb/fetch/cvs.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/bitbake/lib/bb/fetch/cvs.py b/bitbake/lib/bb/fetch/cvs.py index 7d0ccf213..0edb794b0 100644 --- a/bitbake/lib/bb/fetch/cvs.py +++ b/bitbake/lib/bb/fetch/cvs.py @@ -170,14 +170,3 @@ class Cvs(Fetch): except OSError: pass raise FetchError(ud.module) - - def clean(self, ud, d): - """ clean the git directory """ - - pkg = data.expand('${PN}', d) - localdata = data.createCopy(d) - data.setVar('OVERRIDES', "cvs:%s" % data.getVar('OVERRIDES', localdata), localdata) - data.update_data(localdata) - pkgdir = os.path.join(data.expand('${CVSDIR}', localdata), pkg) - bb.utils.remove(pkgdir, True) - bb.utils.remove(ud.localpath) |