diff options
author | Chris Larson <kergoth@openedhand.com> | 2006-09-01 08:36:17 +0000 |
---|---|---|
committer | Chris Larson <kergoth@openedhand.com> | 2006-09-01 08:36:17 +0000 |
commit | 5027d8f8f2190ffb2715cd87456b273dd2789567 (patch) | |
tree | ddf64877956dc58ee434bff80da84fcd3069d4b7 /meta | |
parent | aaab207d3659fd94105da876b58a7df7160c8c93 (diff) | |
download | poky-5027d8f8f2190ffb2715cd87456b273dd2789567.tar.gz |
patch.bbclass: updates from upstream oe.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@691 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/patch.bbclass | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/meta/classes/patch.bbclass b/meta/classes/patch.bbclass index 7bb0900f8a..5e40b3dc0d 100644 --- a/meta/classes/patch.bbclass +++ b/meta/classes/patch.bbclass | |||
@@ -176,16 +176,13 @@ def patch_init(d): | |||
176 | self.initialized = False | 176 | self.initialized = False |
177 | p = os.path.join(self.dir, 'patches') | 177 | p = os.path.join(self.dir, 'patches') |
178 | if not os.path.exists(p): | 178 | if not os.path.exists(p): |
179 | os.mkdir(p) | 179 | os.makedirs(p) |
180 | 180 | ||
181 | def Clean(self): | 181 | def Clean(self): |
182 | try: | 182 | try: |
183 | self._runcmd(["pop", "-a", "-f"]) | 183 | self._runcmd(["pop", "-a", "-f"]) |
184 | except CmdError: | 184 | except Exception: |
185 | pass | ||
186 | except NotFoundError: | ||
187 | pass | 185 | pass |
188 | # runcmd(["rm", "-rf", os.path.join(self.dir, "patches"), os.path.join(self.dir, ".pc")]) | ||
189 | self.initialized = True | 186 | self.initialized = True |
190 | 187 | ||
191 | def InitFromDir(self): | 188 | def InitFromDir(self): |