[oe-commits] Chris Larson : Fix unpack issue with bitbake 1.10

git version control git at git.openembedded.org
Fri Sep 10 19:45:02 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 88cb5184884d045ac4703910a6c5af86c1cf20f4
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=88cb5184884d045ac4703910a6c5af86c1cf20f4

Author: Chris Larson <chris_larson at mentor.com>
Date:   Fri Sep 10 12:38:21 2010 -0700

Fix unpack issue with bitbake 1.10

Signed-off-by: Chris Larson <chris_larson at mentor.com>

---

 classes/base.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/classes/base.bbclass b/classes/base.bbclass
index 1ffbe01..9fc4bf0 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))





More information about the Openembedded-commits mailing list