diff options
-rw-r--r-- | meta/lib/oe/patch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py index bc86bb5391..7ab74fae8a 100644 --- a/meta/lib/oe/patch.py +++ b/meta/lib/oe/patch.py | |||
@@ -278,7 +278,7 @@ class QuiltTree(PatchSet): | |||
278 | if not self.initialized: | 278 | if not self.initialized: |
279 | self.InitFromDir() | 279 | self.InitFromDir() |
280 | PatchSet.Import(self, patch, force) | 280 | PatchSet.Import(self, patch, force) |
281 | oe.path.symlink(patch["file"], self._quiltpatchpath(patch["file"])) | 281 | oe.path.symlink(patch["file"], self._quiltpatchpath(patch["file"]), force=True) |
282 | f = open(os.path.join(self.dir, "patches","series"), "a"); | 282 | f = open(os.path.join(self.dir, "patches","series"), "a"); |
283 | f.write(os.path.basename(patch["file"]) + " -p" + patch["strippath"]+"\n") | 283 | f.write(os.path.basename(patch["file"]) + " -p" + patch["strippath"]+"\n") |
284 | f.close() | 284 | f.close() |