git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c04a98
)
base.bbclass: fix issue with unpack of patches with apply=no
author
Chris Larson
<chris_larson@mentor.com>
Thu, 27 May 2010 20:13:52 +0000
(13:13 -0700)
committer
Chris Larson
<chris_larson@mentor.com>
Thu, 27 May 2010 20:13:52 +0000
(13:13 -0700)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
classes/base.bbclass
patch
|
blob
|
history
diff --git
a/classes/base.bbclass
b/classes/base.bbclass
index
8bac509
..
e0f9184
100644
(file)
--- a/
classes/base.bbclass
+++ b/
classes/base.bbclass
@@
-207,7
+207,7
@@
def oe_unpack_file(file, data, url = None):
cmd = 'cp -pPR %s %s/%s/' % (file, os.getcwd(), destdir)
else:
(type, host, path, user, pswd, parm) = bb.decodeurl(url)
- if not '
apply' in parm and not 'patch' in parm
:
+ if not '
patch' in parm and parm.get('apply') != 'yes'
:
# The "destdir" handling was specifically done for FILESPATH
# items. So, only do so for file:// entries.
if type == "file":