summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/patch.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/patch.py')
-rw-r--r--meta/lib/oe/patch.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py
index 7441214006..2bf501e9e6 100644
--- a/meta/lib/oe/patch.py
+++ b/meta/lib/oe/patch.py
@@ -337,12 +337,15 @@ class GitApplyTree(PatchTree):
337 return (tmpfile, cmd) 337 return (tmpfile, cmd)
338 338
339 @staticmethod 339 @staticmethod
340 def extractPatches(tree, startcommit, outdir): 340 def extractPatches(tree, startcommit, outdir, paths=None):
341 import tempfile 341 import tempfile
342 import shutil 342 import shutil
343 tempdir = tempfile.mkdtemp(prefix='oepatch') 343 tempdir = tempfile.mkdtemp(prefix='oepatch')
344 try: 344 try:
345 shellcmd = ["git", "format-patch", startcommit, "-o", tempdir] 345 shellcmd = ["git", "format-patch", startcommit, "-o", tempdir]
346 if paths:
347 shellcmd.append('--')
348 shellcmd.extend(paths)
346 out = runcmd(["sh", "-c", " ".join(shellcmd)], tree) 349 out = runcmd(["sh", "-c", " ".join(shellcmd)], tree)
347 if out: 350 if out:
348 for srcfile in out.split(): 351 for srcfile in out.split():