summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2012-12-31 12:47:36 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-07 14:38:08 +0000
commit74b82fd4cc3e5eec611800935f1c89db3bac9971 (patch)
tree56d64b1efd44122925c438802039b72ebfe7d81b /meta
parent8183962869363731acf57f2f531da737512f0f2f (diff)
downloadopenembedded-core-contrib-74b82fd4cc3e5eec611800935f1c89db3bac9971.tar.gz
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')
-rw-r--r--meta/classes/copyleft_compliance.bbclass2
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: