aboutsummaryrefslogtreecommitdiffstats
path: root/lib/oe
diff options
context:
space:
mode:
Diffstat (limited to 'lib/oe')
-rw-r--r--lib/oe/patch.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/oe/patch.py b/lib/oe/patch.py
index 607ad44321..7f6b0fe8de 100644
--- a/lib/oe/patch.py
+++ b/lib/oe/patch.py
@@ -230,10 +230,15 @@ class QuiltTree(PatchSet):
if not self.initialized:
self.InitFromDir()
PatchSet.Import(self, patch, force)
- os.symlink(patch["file"], self._quiltpatchpath(patch["file"]))
- f = open(os.path.join(self.dir, "patches","series"), "a");
- f.write(os.path.basename(patch["file"]) + " -p" + patch["strippath"]+"\n")
- f.close()
+
+ args = ["import", "-p", patch["strippath"]]
+ if force:
+ args.append("-f")
+ args.append("-dn")
+ args.append(patch["file"])
+
+ self._runcmd(args)
+
patch["quiltfile"] = self._quiltpatchpath(patch["file"])
patch["quiltfilemd5"] = bb.utils.md5_file(patch["quiltfile"])