From: Richard Purdie Date: Tue, 7 Jul 2009 21:44:53 +0000 (+0100) Subject: bitbake: Fix wget fetcher bug when only checking URIs and the download doesn't exist X-Git-Tag: 2011-1~7218 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=1f86370db80a5ce85a5850f7eb8fdb92bd812add;p=openembedded-core.git bitbake: Fix wget fetcher bug when only checking URIs and the download doesn't exist Signed-off-by: Richard Purdie --- diff --git a/bitbake-dev/lib/bb/fetch/wget.py b/bitbake-dev/lib/bb/fetch/wget.py index 2a899c5808..a0dca94040 100644 --- a/bitbake-dev/lib/bb/fetch/wget.py +++ b/bitbake-dev/lib/bb/fetch/wget.py @@ -95,7 +95,7 @@ class Wget(Fetch): # Sanity check since wget can pretend it succeed when it didn't # Also, this used to happen if sourceforge sent us to the mirror page - if not os.path.exists(ud.localpath): + if not os.path.exists(ud.localpath) and not checkonly: bb.msg.debug(2, bb.msg.domain.Fetcher, "The fetch command for %s returned success but %s doesn't exist?..." % (uri, ud.localpath)) return False diff --git a/bitbake/lib/bb/fetch/wget.py b/bitbake/lib/bb/fetch/wget.py index 442fc3e489..d1ae6cb65f 100644 --- a/bitbake/lib/bb/fetch/wget.py +++ b/bitbake/lib/bb/fetch/wget.py @@ -95,7 +95,7 @@ class Wget(Fetch): # Sanity check since wget can pretend it succeed when it didn't # Also, this used to happen if sourceforge sent us to the mirror page - if not os.path.exists(ud.localpath): + if not os.path.exists(ud.localpath) and not checkonly: bb.msg.debug(2, bb.msg.domain.Fetcher, "The fetch command for %s returned success but %s doesn't exist?..." % (uri, ud.localpath)) return False