From 9a2a321bab79749eb4fdae28a0ec7d97ab85e4a3 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 19 Feb 2013 13:52:38 -0800 Subject: bitbake: wget: Improve mkdir handling If there there isn't a subdirectory to the downloadfilename, this was failing. This patch avoids that issue. (Bitbake rev: 58bfd8d88495d4cae808e23b7af40e65ad05450f) Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/wget.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index 36c19cabd3..131016ce89 100644 --- a/bitbake/lib/bb/fetch2/wget.py +++ b/bitbake/lib/bb/fetch2/wget.py @@ -64,8 +64,9 @@ 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 not checkonly and 'downloadfilename' in ud.parm: - bb.utils.mkdirhier(os.path.dirname(ud.localfile)) - basecmd += " -O ${DL_DIR}/" + ud.localfile + dldir = d.getVar("DL_DIR", True) + bb.utils.mkdirhier(os.path.dirname(dldir + os.sep + ud.localfile)) + basecmd += " -O " + dldir + os.sep + ud.localfile if checkonly: fetchcmd = d.getVar("CHECKCOMMAND_wget", True) or d.expand(basecmd + " --spider '${URI}'") -- cgit v1.2.3-54-g00ecf