summaryrefslogtreecommitdiffstats
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-19 12:15:29 +0100
commit5896d8ff7bcf85b3bab20fc27c4c15e87f86b4d9 (patch)
tree7fdefcecfccd11f5af54f3ed3fe51530c67645fc
parent6ee69ab42580c09f6c3c43bce1ad9669a010a3ca (diff)
downloadbitbake-5896d8ff7bcf85b3bab20fc27c4c15e87f86b4d9.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. Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/fetch2/wget.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/bb/fetch2/wget.py b/lib/bb/fetch2/wget.py
index 7bd027adc..d3be06957 100644
--- a/lib/bb/fetch2/wget.py
+++ b/lib/bb/fetch2/wget.py
@@ -69,10 +69,11 @@ class Wget(FetchMethod):
fetchcmd = fetchcmd.replace("${URI}", uri.split(";")[0])
fetchcmd = fetchcmd.replace("${FILE}", ud.basename)
- logger.info("fetch " + uri)
- logger.debug(2, "executing " + fetchcmd)
+ if not checkonly:
+ logger.info("fetch " + uri)
+ logger.debug(2, "executing " + fetchcmd)
bb.fetch2.check_network_access(d, fetchcmd)
- runfetchcmd(fetchcmd, d)
+ runfetchcmd(fetchcmd, d, quiet=checkonly)
# 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