From bfc70eb24e3ded25007811b1531673fa70b02401 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 3 Aug 2007 13:40:52 +0000 Subject: bitbake: Update along 1.8 branch git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2345 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- bitbake/lib/bb/parse/parse_py/BBHandler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bitbake/lib/bb/parse/parse_py/BBHandler.py') diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py index 20fa60355..5f8426df2 100644 --- a/bitbake/lib/bb/parse/parse_py/BBHandler.py +++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py @@ -400,14 +400,14 @@ def set_additional_vars(file, d, include): from bb import fetch try: - fetch.init(src_uri.split(), d) + ud = fetch.init(src_uri.split(), d) + a += fetch.localpaths(d, ud) except fetch.NoMethodError: pass except bb.MalformedUrl,e: raise ParseError("Unable to generate local paths for SRC_URI due to malformed uri: %s" % e) - - a += fetch.localpaths(d) del fetch + data.setVar('A', " ".join(a), d) -- cgit v1.2.3