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 8ad70f53f1..fccbedb519 100644
--- a/meta/lib/oe/patch.py
+++ b/meta/lib/oe/patch.py
@@ -516,7 +516,7 @@ class GitApplyTree(PatchTree):
516 try: 516 try:
517 shellcmd = [patchfilevar, "git", "--work-tree=%s" % reporoot] 517 shellcmd = [patchfilevar, "git", "--work-tree=%s" % reporoot]
518 self.gitCommandUserOptions(shellcmd, self.commituser, self.commitemail) 518 self.gitCommandUserOptions(shellcmd, self.commituser, self.commitemail)
519 shellcmd += ["am", "-3", "--keep-cr", "-p%s" % patch['strippath']] 519 shellcmd += ["am", "-3", "--keep-cr", "--no-scissors", "-p%s" % patch['strippath']]
520 return _applypatchhelper(shellcmd, patch, force, reverse, run) 520 return _applypatchhelper(shellcmd, patch, force, reverse, run)
521 except CmdError: 521 except CmdError:
522 # Need to abort the git am, or we'll still be within it at the end 522 # Need to abort the git am, or we'll still be within it at the end