summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-09-10 12:38:21 -0700
committerChris Larson <chris_larson@mentor.com>2010-09-10 12:41:14 -0700
commit88cb5184884d045ac4703910a6c5af86c1cf20f4 (patch)
tree9ab656212db27c124b734bacb278b9f6bff9ee59 /classes
parent41019c38e9fb5ebd296106e3edeb391b8e323115 (diff)
downloadopenembedded-88cb5184884d045ac4703910a6c5af86c1cf20f4.tar.gz
Fix unpack issue with bitbake 1.10
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 1ffbe01706..9fc4bf00b2 100644
--- a/classes/base.bbclass
+++ b/classes/base.bbclass
@@ -177,7 +177,7 @@ def oe_unpack(d, local, urldata):
if not urldata.host:
urlpath = urldata.path
else:
- urlpath = oe.path.join(urldata.host, urldata.path)
+ urlpath = "%s%s" % (urldata.host, urldata.path)
if not os.path.isabs(urlpath):
subdirs.append(os.path.dirname(urlpath))