[oe-commits] Chris Larson : base.bbclass: Abort early if localpath() was unable to find a local file for the url.

GIT User account git at amethyst.openembedded.net
Mon Mar 23 22:50:50 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 850ea31d59620b24ccb541743459ebc348f23498
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=850ea31d59620b24ccb541743459ebc348f23498

Author: Chris Larson <clarson at mvista.com>
Date:   Mon Mar 23 15:38:24 2009 -0700

base.bbclass: Abort early if localpath() was unable to find a local file for the url.

Signed-off-by: Chris Larson <clarson at mvista.com>

---

 classes/base.bbclass |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/classes/base.bbclass b/classes/base.bbclass
index f39059e..919d01d 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:





More information about the Openembedded-commits mailing list