summaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch/wget.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-04-27 12:51:57 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2008-04-27 12:51:57 +0000
commitd9d3da757fa395472728c5cf3cab3bdc27b3448b (patch)
tree5e5be5270008cf78dbcb3b1e3d18fe6b1175c0b3 /lib/bb/fetch/wget.py
parent91e4ef14fc1858c4f49ca65d29fe41339fe2bdbd (diff)
downloadbitbake-d9d3da757fa395472728c5cf3cab3bdc27b3448b.tar.gz
fetchers: Tweak the new checkstatus code to handle some corner cases better
Diffstat (limited to 'lib/bb/fetch/wget.py')
-rw-r--r--lib/bb/fetch/wget.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch/wget.py b/lib/bb/fetch/wget.py
index a5979dead..739d5a1bc 100644
--- a/lib/bb/fetch/wget.py
+++ b/lib/bb/fetch/wget.py
@@ -53,7 +53,7 @@ class Wget(Fetch):
def fetch_uri(uri, ud, d):
if checkonly:
- fetchcmd = data.getVar("FETCHCOMMAND", d, 1) + " " + data.getVar("FETCHOPTION_checkonly", d, 1)
+ fetchcmd = data.getVar("CHECKCOMMAND", d, 1)
elif os.path.exists(ud.localpath):
# file exists, but we didnt complete it.. trying again..
fetchcmd = data.getVar("RESUMECOMMAND", d, 1)