diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2015-06-30 09:39:11 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-09 18:00:21 +0100 |
commit | f9ea480e6c26fea46c3011c4e9d0e2de3d5c81b4 (patch) | |
tree | c71249a10ad945704694fbeea0bf9061e6c885e5 /bitbake/lib/bb/fetch2/wget.py | |
parent | bf6c21c38b9d07481dd34f7a0a2c37f800295ccb (diff) | |
download | poky-f9ea480e6c26fea46c3011c4e9d0e2de3d5c81b4.tar.gz |
bitbake: fetch2: Add fetch parameter to checkstatusyocto-1.9_M1
In order to pass connection cache object to checkstatus function
add fetch parameter.
(Bitbake rev: fbb9c6f5538084e125b58118a86968908e6f895b)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/wget.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/wget.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index 162a6bd3be..abacbcf796 100644 --- a/bitbake/lib/bb/fetch2/wget.py +++ b/bitbake/lib/bb/fetch2/wget.py | |||
@@ -100,7 +100,7 @@ class Wget(FetchMethod): | |||
100 | 100 | ||
101 | return True | 101 | return True |
102 | 102 | ||
103 | def checkstatus(self, ud, d): | 103 | def checkstatus(self, fetch, ud, d): |
104 | 104 | ||
105 | uri = ud.url.split(";")[0] | 105 | uri = ud.url.split(";")[0] |
106 | fetchcmd = self.basecmd + " --spider '%s'" % uri | 106 | fetchcmd = self.basecmd + " --spider '%s'" % uri |