]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake: fix invalid method and logic
authorJoshua Lock <josh@linux.intel.com>
Fri, 5 Feb 2010 12:41:08 +0000 (12:41 +0000)
committerJoshua Lock <josh@linux.intel.com>
Fri, 5 Feb 2010 12:41:08 +0000 (12:41 +0000)
The previous bitbake change included an invalid method call and inverted logic.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
bitbake/lib/bb/fetch/__init__.py

index 4b1203d605c7dd8df3c6b6486f9ebcb2fce95169..b42bcf439c5c16417d7a448021a01c7fd8be470b 100644 (file)
@@ -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,