diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/utility-tasks.bbclass | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/classes/utility-tasks.bbclass b/meta/classes/utility-tasks.bbclass index e817b899a6..f62d523f5a 100644 --- a/meta/classes/utility-tasks.bbclass +++ b/meta/classes/utility-tasks.bbclass | |||
@@ -43,11 +43,8 @@ python do_checkuri() { | |||
43 | if len(src_uri) == 0: | 43 | if len(src_uri) == 0: |
44 | return | 44 | return |
45 | 45 | ||
46 | localdata = bb.data.createCopy(d) | ||
47 | bb.data.update_data(localdata) | ||
48 | |||
49 | try: | 46 | try: |
50 | fetcher = bb.fetch2.Fetch(src_uri, localdata) | 47 | fetcher = bb.fetch2.Fetch(src_uri, d) |
51 | fetcher.checkstatus() | 48 | fetcher.checkstatus() |
52 | except bb.fetch2.BBFetchException, e: | 49 | except bb.fetch2.BBFetchException, e: |
53 | raise bb.build.FuncFailed(e) | 50 | raise bb.build.FuncFailed(e) |