diff options
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oe/patch.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py index ff9afc9df9..9b480b2b28 100644 --- a/meta/lib/oe/patch.py +++ b/meta/lib/oe/patch.py | |||
| @@ -772,8 +772,9 @@ class NOOPResolver(Resolver): | |||
| 772 | self.patchset.Push() | 772 | self.patchset.Push() |
| 773 | except Exception: | 773 | except Exception: |
| 774 | import sys | 774 | import sys |
| 775 | os.chdir(olddir) | ||
| 776 | raise | 775 | raise |
| 776 | finally: | ||
| 777 | os.chdir(olddir) | ||
| 777 | 778 | ||
| 778 | # Patch resolver which relies on the user doing all the work involved in the | 779 | # Patch resolver which relies on the user doing all the work involved in the |
| 779 | # resolution, with the exception of refreshing the remote copy of the patch | 780 | # resolution, with the exception of refreshing the remote copy of the patch |
| @@ -833,9 +834,9 @@ class UserResolver(Resolver): | |||
| 833 | # User did not fix the problem. Abort. | 834 | # User did not fix the problem. Abort. |
| 834 | raise PatchError("Patch application failed, and user did not fix and refresh the patch.") | 835 | raise PatchError("Patch application failed, and user did not fix and refresh the patch.") |
| 835 | except Exception: | 836 | except Exception: |
| 836 | os.chdir(olddir) | ||
| 837 | raise | 837 | raise |
| 838 | os.chdir(olddir) | 838 | finally: |
| 839 | os.chdir(olddir) | ||
| 839 | 840 | ||
| 840 | 841 | ||
| 841 | def patch_path(url, fetch, workdir, expand=True): | 842 | def patch_path(url, fetch, workdir, expand=True): |
