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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py
index bfa7d21879..af7aa52351 100644
--- a/meta/lib/oe/patch.py
+++ b/meta/lib/oe/patch.py
@@ -448,7 +448,7 @@ class GitApplyTree(PatchTree):
448 import re 448 import re
449 tempdir = tempfile.mkdtemp(prefix='oepatch') 449 tempdir = tempfile.mkdtemp(prefix='oepatch')
450 try: 450 try:
451 shellcmd = ["git", "format-patch", startcommit, "-o", tempdir] 451 shellcmd = ["git", "format-patch", "--no-signature", "--no-numbered", startcommit, "-o", tempdir]
452 if paths: 452 if paths:
453 shellcmd.append('--') 453 shellcmd.append('--')
454 shellcmd.extend(paths) 454 shellcmd.extend(paths)