aboutsummaryrefslogtreecommitdiffstats
path: root/lib/oe
diff options
context:
space:
mode:
Diffstat (limited to 'lib/oe')
-rw-r--r--lib/oe/patch.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/oe/patch.py b/lib/oe/patch.py
index ea5309f321..d153a0cd4a 100644
--- a/lib/oe/patch.py
+++ b/lib/oe/patch.py
@@ -80,11 +80,10 @@ class PatchTree(PatchSet):
if not run:
return subprocess.list2cmdline(shellcmd)
- patch = open(patch['file'], "r")
- if not force:
- oe.process.run(shellcmd + ["--dry-run"], cwd=self.dir, stdin=patch)
- patch.seek(0)
+ if force:
+ shellcmd.append('-f')
+ patch = open(patch['file'], "r")
return oe.process.run(shellcmd, cwd=self.dir, env=self.env, stdin=patch)
def Push(self, force = False, all = False, run = True):