diff options
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
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): | |||
675 | # We cannot compute checksums for directories | 675 | # We cannot compute checksums for directories |
676 | if os.path.isdir(urldata.localpath) == True: | 676 | if os.path.isdir(urldata.localpath) == True: |
677 | return False | 677 | return False |
678 | if urldata.localpath.find("*") != -1: | ||
679 | return False | ||
678 | 680 | ||
679 | return True | 681 | return True |
680 | 682 | ||