diff options
-rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index 708e397264..88212ffa33 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py | |||
@@ -256,6 +256,7 @@ def verify_checksum(u, ud, d): | |||
256 | % (ud.localpath, ud.md5_name, md5data, ud.sha256_name, sha256data)) | 256 | % (ud.localpath, ud.md5_name, md5data, ud.sha256_name, sha256data)) |
257 | if bb.data.getVar("BB_STRICT_CHECKSUM", d, True) == "1": | 257 | if bb.data.getVar("BB_STRICT_CHECKSUM", d, True) == "1": |
258 | raise FetchError("No checksum specified for %s." % u) | 258 | raise FetchError("No checksum specified for %s." % u) |
259 | return | ||
259 | 260 | ||
260 | if (ud.md5_expected != md5data or ud.sha256_expected != sha256data): | 261 | if (ud.md5_expected != md5data or ud.sha256_expected != sha256data): |
261 | bb.error("The checksums for '%s' did not match." % ud.localpath) | 262 | bb.error("The checksums for '%s' did not match." % ud.localpath) |