From 33c4bf2096effc850720009564e3d1adbda24452 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 22 May 2012 12:18:11 +0100 Subject: fetch2: Also exclude urls containing wildcards from checksumming for now Without this change, bitbake will try and checksum a wildcard which will lead to fetch failures. (Bitbake rev: ac53b88be58b0bed21730c0b61a8fc8e801a2f1b) Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/__init__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bitbake') diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index e3ac4d20a3..6cd389a296 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py @@ -675,6 +675,8 @@ class FetchMethod(object): # We cannot compute checksums for directories if os.path.isdir(urldata.localpath) == True: return False + if urldata.localpath.find("*") != -1: + return False return True -- cgit v1.2.3-54-g00ecf