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:43:24 +0000 |
commit | af19d889ef320f9625aae42eed6688b5cc739793 (patch) | |
tree | 7d16ac99c5d2bdab94a4ae1ce426fed896ef9ddd | |
parent | db51e36b8e8c96d087d1223ec32f9ad62901ee6f (diff) | |
download | poky-af19d889ef320f9625aae42eed6688b5cc739793.tar.gz |
copyleft_compliance: force the symlink creation
(From OE-Core rev: 74b82fd4cc3e5eec611800935f1c89db3bac9971)
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>
-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 () { | |||
45 | if os.path.exists(tarball_path): | 45 | if os.path.exists(tarball_path): |
46 | local = tarball_path | 46 | local = tarball_path |
47 | 47 | ||
48 | os.symlink(local, os.path.join(dest, os.path.basename(local))) | 48 | oe.path.symlink(local, os.path.join(dest, os.path.basename(local)), force=True) |
49 | 49 | ||
50 | patches = src_patches(d) | 50 | patches = src_patches(d) |
51 | for patch in patches: | 51 | for patch in patches: |