summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2010-02-05 12:41:08 +0000
committerJoshua Lock <josh@linux.intel.com>2010-02-05 12:41:08 +0000
commit52cbb074235fc7b1bcd94bc1147c4607612fe701 (patch)
treebcd28cc25ac6ef399400e7a8b26d86de8352db75 /bitbake
parentec92133d6fc049b4b666d670d3ac263de5a1d103 (diff)
downloadopenembedded-core-contrib-52cbb074235fc7b1bcd94bc1147c4607612fe701.tar.gz
bitbake: fix invalid method and logic
The previous bitbake change included an invalid method call and inverted logic. Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py
index 4b1203d605..b42bcf439c 100644
--- a/bitbake/lib/bb/fetch/__init__.py
+++ b/bitbake/lib/bb/fetch/__init__.py
@@ -369,7 +369,7 @@ def try_mirrors(d, uri, mirrors, check = False):
mirrors is the list of mirrors we're going to try
"""
fpath = os.path.join(data.getVar("DL_DIR", d, 1), os.path.basename(uri))
- if not check and os.access.path(fpath, os.R_OK):
+ if not check and os.access(fpath, os.R_OK):
bb.msg.debug(1, bb.msg.domain.Fetcher, "%s already exists, skipping checkout." % fpath)
return fpath
@@ -387,9 +387,9 @@ def try_mirrors(d, uri, mirrors, check = False):
try:
if check:
- ud.method.go(newuri, ud, ld)
- else:
ud.method.checkstatus(newuri, ud, ld)
+ else:
+ ud.method.go(newuri, ud, ld)
return ud.localpath
except (bb.fetch.MissingParameterError,
bb.fetch.FetchError,