diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-09-10 12:38:21 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-09-10 12:41:14 -0700 |
commit | 88cb5184884d045ac4703910a6c5af86c1cf20f4 (patch) | |
tree | 9ab656212db27c124b734bacb278b9f6bff9ee59 | |
parent | 41019c38e9fb5ebd296106e3edeb391b8e323115 (diff) |
Fix unpack issue with bitbake 1.10
Signed-off-by: Chris Larson <chris_larson@mentor.com>
-rw-r--r-- | classes/base.bbclass | 2 |
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)) |