summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-09-14 15:40:58 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-20 22:24:09 +0100
commit9e4dc60c7590bba50dc3881989f2f3066dc89c1e (patch)
tree5002ddc71b41e24e8d124da656914b8c330fd64d /bitbake
parent1fba7bec25c7788edf89a29ab5ebf58d4afab500 (diff)
downloadpoky-9e4dc60c7590bba50dc3881989f2f3066dc89c1e.tar.gz
fetch2/wget: make checkstatus() quieter
Change the wget fetcher to not emit the commands output when calling checkstatus, this matches the behaviour of the git fetchers checkstatus() method. (Bitbake rev: 5896d8ff7bcf85b3bab20fc27c4c15e87f86b4d9) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch2/wget.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py
index 7bd027adc5..d3be069576 100644
--- a/bitbake/lib/bb/fetch2/wget.py
+++ b/bitbake/lib/bb/fetch2/wget.py
@@ -69,10 +69,11 @@ class Wget(FetchMethod):
69 69
70 fetchcmd = fetchcmd.replace("${URI}", uri.split(";")[0]) 70 fetchcmd = fetchcmd.replace("${URI}", uri.split(";")[0])
71 fetchcmd = fetchcmd.replace("${FILE}", ud.basename) 71 fetchcmd = fetchcmd.replace("${FILE}", ud.basename)
72 logger.info("fetch " + uri) 72 if not checkonly:
73 logger.debug(2, "executing " + fetchcmd) 73 logger.info("fetch " + uri)
74 logger.debug(2, "executing " + fetchcmd)
74 bb.fetch2.check_network_access(d, fetchcmd) 75 bb.fetch2.check_network_access(d, fetchcmd)
75 runfetchcmd(fetchcmd, d) 76 runfetchcmd(fetchcmd, d, quiet=checkonly)
76 77
77 # Sanity check since wget can pretend it succeed when it didn't 78 # Sanity check since wget can pretend it succeed when it didn't
78 # Also, this used to happen if sourceforge sent us to the mirror page 79 # Also, this used to happen if sourceforge sent us to the mirror page