summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-11-12 16:11:13 -0700
committerChris Larson <chris_larson@mentor.com>2010-11-12 16:13:08 -0700
commite0bcb3741e4306ce00e187ca2e0505efc5fe5d39 (patch)
tree0f274cc339875921beb2e66be95389d3149a6021 /classes
parent3a06d26504b14a1fda815827a2ec85e26c10a498 (diff)
downloadopenembedded-e0bcb3741e4306ce00e187ca2e0505efc5fe5d39.tar.gz
newcollection: fix host/path issue
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/newcollection.bbclass5
1 files changed, 2 insertions, 3 deletions
diff --git a/classes/newcollection.bbclass b/classes/newcollection.bbclass
index 2a7681183d..20794f68bf 100644
--- a/classes/newcollection.bbclass
+++ b/classes/newcollection.bbclass
@@ -50,9 +50,8 @@ def __newcollection_get_fileuris(d):
(scheme, netloc, path, params, query, frag) = o
- if not path:
- path = netloc
- netloc = ""
+ if netloc:
+ path = netloc + path
try:
spath = path.split(";")