aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-05-26 12:27:32 -0700
committerChris Larson <chris_larson@mentor.com>2010-05-26 12:28:38 -0700
commit8cffbaec07c0ae0a29ec8d5606c604d75f135ce8 (patch)
tree3e0864e51689bff696b37535af83670fc5a2488a /classes
parent4a72268c21b20c868b9e98ab4834ab750e95decb (diff)
downloadopenembedded-8cffbaec07c0ae0a29ec8d5606c604d75f135ce8.tar.gz
base.bbclass: make do_unpack also not unpack when 'apply' url parameter is set
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass
index 3c854c6e7b..8bac509115 100644
--- 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 'patch' in parm:
+ if not 'apply' in parm and not 'patch' in parm:
# The "destdir" handling was specifically done for FILESPATH
# items. So, only do so for file:// entries.
if type == "file":