From 5896d8ff7bcf85b3bab20fc27c4c15e87f86b4d9 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Wed, 14 Sep 2011 15:40:58 -0700 Subject: 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 Signed-off-by: Richard Purdie --- lib/bb/fetch2/wget.py | 7 ++++--- 1 file 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 -- cgit 1.2.3-korg