diff options
author | Christopher Larson <chris_larson@mentor.com> | 2012-12-31 12:47:36 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-07 14:38:08 +0000 |
commit | 74b82fd4cc3e5eec611800935f1c89db3bac9971 (patch) | |
tree | 56d64b1efd44122925c438802039b72ebfe7d81b /meta/classes | |
parent | 8183962869363731acf57f2f531da737512f0f2f (diff) | |
download | openembedded-core-74b82fd4cc3e5eec611800935f1c89db3bac9971.tar.gz openembedded-core-74b82fd4cc3e5eec611800935f1c89db3bac9971.tar.bz2 openembedded-core-74b82fd4cc3e5eec611800935f1c89db3bac9971.zip |
copyleft_compliance: force the symlink creation
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Gilbert Coville <gilbert_coville@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/copyleft_compliance.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/copyleft_compliance.bbclass b/meta/classes/copyleft_compliance.bbclass index 786cf1e9c7..06b02278d3 100644 --- a/meta/classes/copyleft_compliance.bbclass +++ b/meta/classes/copyleft_compliance.bbclass @@ -45,7 +45,7 @@ python do_prepare_copyleft_sources () { if os.path.exists(tarball_path): local = tarball_path - os.symlink(local, os.path.join(dest, os.path.basename(local))) + oe.path.symlink(local, os.path.join(dest, os.path.basename(local)), force=True) patches = src_patches(d) for patch in patches: |