diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r-- | bitbake/lib/bb/fetch2/wget.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index 0c61dfa20d..ae0ffa8c97 100644 --- a/bitbake/lib/bb/fetch2/wget.py +++ b/bitbake/lib/bb/fetch2/wget.py | |||
@@ -107,9 +107,8 @@ class Wget(FetchMethod): | |||
107 | bb.utils.mkdirhier(os.path.dirname(dldir + os.sep + ud.localfile)) | 107 | bb.utils.mkdirhier(os.path.dirname(dldir + os.sep + ud.localfile)) |
108 | fetchcmd += " -O " + dldir + os.sep + ud.localfile | 108 | fetchcmd += " -O " + dldir + os.sep + ud.localfile |
109 | 109 | ||
110 | if ud.user: | 110 | if ud.user and ud.pswd: |
111 | up = ud.user.split(":") | 111 | fetchcmd += " --user=%s --password=%s --auth-no-challenge" % (ud.user, ud.pswd) |
112 | fetchcmd += " --user=%s --password=%s --auth-no-challenge" % (up[0],up[1]) | ||
113 | 112 | ||
114 | uri = ud.url.split(";")[0] | 113 | uri = ud.url.split(";")[0] |
115 | if os.path.exists(ud.localpath): | 114 | if os.path.exists(ud.localpath): |