From: Chris Larson Date: Fri, 12 Nov 2010 23:11:13 +0000 (-0700) Subject: newcollection: fix host/path issue X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0bcb3741e4306ce00e187ca2e0505efc5fe5d39;p=openembedded.git newcollection: fix host/path issue Signed-off-by: Chris Larson --- 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(";")