Fix unpack issue with bitbake 1.10
authorChris Larson <chris_larson@mentor.com>
Fri, 10 Sep 2010 19:38:21 +0000 (12:38 -0700)
committerChris Larson <chris_larson@mentor.com>
Fri, 10 Sep 2010 19:41:14 +0000 (12:41 -0700)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
classes/base.bbclass

index 1ffbe01..9fc4bf0 100644 (file)
@@ -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))