From: Richard Purdie Date: Thu, 14 Feb 2013 21:33:04 +0000 (+0000) Subject: bitbake: wget: Only use -O option when not spidering X-Git-Tag: rev_ivi_2015_02_04~13696 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=07df644f96842659b5a0393d164eb90883d0d68a;p=scm%2Fbb%2Ftizen-distro.git bitbake: wget: Only use -O option when not spidering If we pass the -O option whilst spidering, empty files are created which is not desired. We also need to ensure any subdirectories are created when using the downloadfilename parameter. (Bitbake rev: d5f78e98d5aba36c95288fbaac267c2d54537b02) Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index 2808df6..24eec31 100644 --- a/bitbake/lib/bb/fetch2/wget.py +++ b/bitbake/lib/bb/fetch2/wget.py @@ -65,7 +65,8 @@ class Wget(FetchMethod): basecmd = d.getVar("FETCHCMD_wget", True) or "/usr/bin/env wget -t 2 -T 30 -nv --passive-ftp --no-check-certificate" - if 'downloadfilename' in ud.parm: + if not checkonly and 'downloadfilename' in ud.parm: + bb.utils.mkdirhier(os.path.dirname(ud.localfile)) basecmd += " -O ${DL_DIR}/" + ud.localfile if checkonly: