diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-19 13:52:38 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-19 14:00:32 -0800 |
commit | 9a2a321bab79749eb4fdae28a0ec7d97ab85e4a3 (patch) | |
tree | f961f44f7ad9e506dd9574f75f261d1f5a3fc756 /bitbake/lib/bb/fetch2/wget.py | |
parent | 7ca6e975e2d2a9dcd6a1dffd6d472bce85cf498c (diff) | |
download | poky-9a2a321bab79749eb4fdae28a0ec7d97ab85e4a3.tar.gz |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/wget.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/wget.py | 5 |
1 files 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): | |||
64 | basecmd = d.getVar("FETCHCMD_wget", True) or "/usr/bin/env wget -t 2 -T 30 -nv --passive-ftp --no-check-certificate" | 64 | basecmd = d.getVar("FETCHCMD_wget", True) or "/usr/bin/env wget -t 2 -T 30 -nv --passive-ftp --no-check-certificate" |
65 | 65 | ||
66 | if not checkonly and 'downloadfilename' in ud.parm: | 66 | if not checkonly and 'downloadfilename' in ud.parm: |
67 | bb.utils.mkdirhier(os.path.dirname(ud.localfile)) | 67 | dldir = d.getVar("DL_DIR", True) |
68 | basecmd += " -O ${DL_DIR}/" + ud.localfile | 68 | bb.utils.mkdirhier(os.path.dirname(dldir + os.sep + ud.localfile)) |
69 | basecmd += " -O " + dldir + os.sep + ud.localfile | ||
69 | 70 | ||
70 | if checkonly: | 71 | if checkonly: |
71 | fetchcmd = d.getVar("CHECKCOMMAND_wget", True) or d.expand(basecmd + " --spider '${URI}'") | 72 | fetchcmd = d.getVar("CHECKCOMMAND_wget", True) or d.expand(basecmd + " --spider '${URI}'") |