git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
41019c3
)
Fix unpack issue with bitbake 1.10
author
Chris Larson
<chris_larson@mentor.com>
Fri, 10 Sep 2010 19:38:21 +0000
(12:38 -0700)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/classes/base.bbclass
b/classes/base.bbclass
index
1ffbe01
..
9fc4bf0
100644
(file)
--- 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))