From: Chris Larson Date: Mon, 23 Mar 2009 22:38:24 +0000 (-0700) Subject: base.bbclass: Abort early if localpath() was unable to find a local file for the... X-Git-Tag: Release-2010-05/1~3796^2~51 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=850ea31d59620b24ccb541743459ebc348f23498;p=openembedded.git base.bbclass: Abort early if localpath() was unable to find a local file for the url. Signed-off-by: Chris Larson --- diff --git a/classes/base.bbclass b/classes/base.bbclass index f39059ecc0..919d01d77b 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -794,7 +794,9 @@ python base_do_unpack() { try: local = bb.data.expand(bb.fetch.localpath(url, localdata), localdata) except bb.MalformedUrl, e: - raise FuncFailed('Unable to generate local path for malformed uri: %s' % e) + raise bb.build.FuncFailed('Unable to generate local path for malformed uri: %s' % e) + if not local: + raise bb.build.FuncFailed('Unable to locate local file for %s' % url) local = os.path.realpath(local) ret = oe_unpack_file(local, localdata, url) if not ret: