diff options
Diffstat (limited to 'meta')
-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 c4f042d54b..108bf1de56 100644 --- a/meta/lib/oe/patch.py +++ b/meta/lib/oe/patch.py | |||
@@ -415,7 +415,7 @@ class GitApplyTree(PatchTree): | |||
415 | # Fall back to patch | 415 | # Fall back to patch |
416 | output = PatchTree._applypatch(self, patch, force, reverse, run) | 416 | output = PatchTree._applypatch(self, patch, force, reverse, run) |
417 | # Add all files | 417 | # Add all files |
418 | shellcmd = ["git", "add", "-f", "."] | 418 | shellcmd = ["git", "add", "-f", "-A", "."] |
419 | output += runcmd(["sh", "-c", " ".join(shellcmd)], self.dir) | 419 | output += runcmd(["sh", "-c", " ".join(shellcmd)], self.dir) |
420 | # Exclude the patches directory | 420 | # Exclude the patches directory |
421 | shellcmd = ["git", "reset", "HEAD", self.patchdir] | 421 | shellcmd = ["git", "reset", "HEAD", self.patchdir] |