diff options
-rw-r--r-- | bitbake/lib/bb/fetch2/wget.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index ffd608f213..0456490368 100644 --- a/bitbake/lib/bb/fetch2/wget.py +++ b/bitbake/lib/bb/fetch2/wget.py | |||
@@ -79,9 +79,9 @@ class Wget(FetchMethod): | |||
79 | uri = ud.url.split(";")[0] | 79 | uri = ud.url.split(";")[0] |
80 | if os.path.exists(ud.localpath): | 80 | if os.path.exists(ud.localpath): |
81 | # file exists, but we didnt complete it.. trying again.. | 81 | # file exists, but we didnt complete it.. trying again.. |
82 | fetchcmd = self.basecmd + d.expand(" -c -P ${DL_DIR} '%s'" % uri) | 82 | fetchcmd += d.expand(" -c -P ${DL_DIR} '%s'" % uri) |
83 | else: | 83 | else: |
84 | fetchcmd = self.basecmd + d.expand(" -P ${DL_DIR} '%s'" % uri) | 84 | fetchcmd += d.expand(" -P ${DL_DIR} '%s'" % uri) |
85 | 85 | ||
86 | self._runwget(ud, d, fetchcmd, False) | 86 | self._runwget(ud, d, fetchcmd, False) |
87 | 87 | ||