diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/archiver.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass index c1076155b7..31c9b7eb4b 100644 --- a/meta/classes/archiver.bbclass +++ b/meta/classes/archiver.bbclass | |||
@@ -277,6 +277,11 @@ def create_tarball(d, srcdir, suffix, ar_outdir): | |||
277 | if (d.getVar('SRC_URI') == ""): | 277 | if (d.getVar('SRC_URI') == ""): |
278 | return | 278 | return |
279 | 279 | ||
280 | # For the kernel archive, srcdir may just be a link to the | ||
281 | # work-shared location. Use os.path.realpath to make sure | ||
282 | # that we archive the actual directory and not just the link. | ||
283 | srcdir = os.path.realpath(srcdir) | ||
284 | |||
280 | bb.utils.mkdirhier(ar_outdir) | 285 | bb.utils.mkdirhier(ar_outdir) |
281 | if suffix: | 286 | if suffix: |
282 | filename = '%s-%s.tar.gz' % (d.getVar('PF'), suffix) | 287 | filename = '%s-%s.tar.gz' % (d.getVar('PF'), suffix) |