bitbake: wget: Improve mkdir handling
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 19 Feb 2013 21:52:38 +0000 (13:52 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 19 Feb 2013 22:00:32 +0000 (14:00 -0800)
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 <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/fetch2/wget.py

index 36c19ca..131016c 100644 (file)
@@ -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}'")