diff options
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r-- | meta/classes/sstate.bbclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 5581af94b1..99fc63215a 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -318,8 +318,9 @@ def pstaging_fetch(sstatepkg, d): | |||
318 | bb.fetch.go(localdata, [srcuri]) | 318 | bb.fetch.go(localdata, [srcuri]) |
319 | # Need to optimise this, if using file:// urls, the fetcher just changes the local path | 319 | # Need to optimise this, if using file:// urls, the fetcher just changes the local path |
320 | # For now work around by symlinking | 320 | # For now work around by symlinking |
321 | if bb.data.expand(bb.fetch.localpath(srcuri, localdata), localdata) != sstatepkg: | 321 | localpath = bb.data.expand(bb.fetch.localpath(srcuri, localdata), localdata) |
322 | os.symlink(bb.data.expand(bb.fetch.localpath(srcuri, localdata), localdata), sstatepkg) | 322 | if localpath != sstatepkg and os.path.exists(localpath): |
323 | os.symlink(localpath, sstatepkg) | ||
323 | except: | 324 | except: |
324 | pass | 325 | pass |
325 | 326 | ||