diff options
-rw-r--r-- | bitbake/lib/bb/fetch2/cvs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/cvs.py b/bitbake/lib/bb/fetch2/cvs.py index 6a948c4aec..09827e6053 100644 --- a/bitbake/lib/bb/fetch2/cvs.py +++ b/bitbake/lib/bb/fetch2/cvs.py | |||
@@ -122,7 +122,7 @@ class Cvs(FetchMethod): | |||
122 | # create module directory | 122 | # create module directory |
123 | logger.debug(2, "Fetch: checking for module directory") | 123 | logger.debug(2, "Fetch: checking for module directory") |
124 | pkg = data.expand('${PN}', d) | 124 | pkg = data.expand('${PN}', d) |
125 | pkgdir = os.path.join(data.expand('${CVSDIR}', localdata), pkg) | 125 | pkgdir = os.path.join(data.expand('${CVSDIR}', d), pkg) |
126 | moddir = os.path.join(pkgdir, localdir) | 126 | moddir = os.path.join(pkgdir, localdir) |
127 | if os.access(os.path.join(moddir, 'CVS'), os.R_OK): | 127 | if os.access(os.path.join(moddir, 'CVS'), os.R_OK): |
128 | logger.info("Update " + loc) | 128 | logger.info("Update " + loc) |