diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-07-07 22:44:53 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-07-07 22:44:53 +0100 |
commit | 1f86370db80a5ce85a5850f7eb8fdb92bd812add (patch) | |
tree | 6da98e9e0bb6e90861651f6e58b5983fcf0a7998 /bitbake/lib/bb/fetch | |
parent | 1e638321db6ba3dbde84cee09e20353be82fe5f8 (diff) | |
download | poky-1f86370db80a5ce85a5850f7eb8fdb92bd812add.tar.gz |
bitbake: Fix wget fetcher bug when only checking URIs and the download doesn't exist
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/fetch')
-rw-r--r-- | bitbake/lib/bb/fetch/wget.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
95 | 95 | ||
96 | # Sanity check since wget can pretend it succeed when it didn't | 96 | # Sanity check since wget can pretend it succeed when it didn't |
97 | # Also, this used to happen if sourceforge sent us to the mirror page | 97 | # Also, this used to happen if sourceforge sent us to the mirror page |
98 | if not os.path.exists(ud.localpath): | 98 | if not os.path.exists(ud.localpath) and not checkonly: |
99 | bb.msg.debug(2, bb.msg.domain.Fetcher, "The fetch command for %s returned success but %s doesn't exist?..." % (uri, ud.localpath)) | 99 | bb.msg.debug(2, bb.msg.domain.Fetcher, "The fetch command for %s returned success but %s doesn't exist?..." % (uri, ud.localpath)) |
100 | return False | 100 | return False |
101 | 101 | ||